Skip to content

Commit

Permalink
Replace API Region Base URL with API URL (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenclouston authored Dec 3, 2024
1 parent 7e5efd2 commit dde1ec8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group 'com.authsignal'
version '1.0.1'
version '1.0.2'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ public AuthenticationExecutionModel.Requirement[] getRequirementChoices() {

ProviderConfigProperty baseUrl = new ProviderConfigProperty();
baseUrl.setName(PROP_API_HOST_BASE_URL);
baseUrl.setLabel("Authsignal API Region Base URL");
baseUrl.setLabel("Authsignal API URL");
baseUrl.setType(ProviderConfigProperty.STRING_TYPE);
baseUrl.setHelpText("API Region Base URL from Authsignal admin portal");
baseUrl.setHelpText("API URL from Authsignal admin portal");
configProperties.add(baseUrl);

ProviderConfigProperty tenantId = new ProviderConfigProperty();
Expand Down

0 comments on commit dde1ec8

Please sign in to comment.