Skip to content

Commit

Permalink
Merge pull request #36 from privacyidea/fix_url_config
Browse files Browse the repository at this point in the history
change url input field type, upgrade dependencies
  • Loading branch information
laclaro authored Apr 24, 2020
2 parents de7b3b9 + 6bd5967 commit 08a89c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,19 @@
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-core</artifactId>
<version>9.0.0</version>
<version>9.0.3</version>
</dependency>

<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-server-spi</artifactId>
<version>7.0.0</version>
<version>9.0.3</version>
</dependency>

<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-server-spi-private</artifactId>
<version>7.0.0</version>
<version>9.0.3</version>
</dependency>

<dependency>
Expand All @@ -62,7 +62,7 @@
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-services</artifactId>
<version>7.0.0</version>
<version>9.0.3</version>
</dependency>

<dependency>
Expand All @@ -80,7 +80,7 @@
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-common</artifactId>
<version>7.0.0</version>
<version>9.0.3</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public List<ProviderConfigProperty> getConfigProperties() {

static {
ProviderConfigProperty piServerUrl = new ProviderConfigProperty();
piServerUrl.setType(ProviderConfigProperty.STRING_TYPE);
piServerUrl.setType(ProviderConfigProperty.TEXT_TYPE);
piServerUrl.setName(CONFIG_SERVER);
piServerUrl.setLabel("URL");
piServerUrl.setHelpText("The URL of the privacyIDEA server (complete with scheme, host and port like \"https://<piserver>:port\")");
Expand Down

0 comments on commit 08a89c3

Please sign in to comment.