<% content_for :extra_script do %>
<script>
window.sonarqube.signUpAllowed = <%= Property.value("sonar.allowUsersToSignUp") == "true" ? "true" : "false" -%>;
- window.sonarqube.landingText = '<%= escape_javascript configuration("sonar.lf.landingText", "") -%>';
+ window.sonarqube.landingText = '<%= escape_javascript configuration("sonar.lf.aboutText", "") -%>';
<% auth_providers = Api::Utils.java_facade.getIdentityProviders().to_a %>
window.sonarqube.authProviders = [
.category(CoreProperties.CATEGORY_GENERAL)
.subCategory(CoreProperties.SUBCATEGORY_LOOKNFEEL)
.build(),
- PropertyDefinition.builder("sonar.lf.landingText")
- .name("Landing page text")
- .description("Optional text that is display on the landing page. Supports html.")
+ PropertyDefinition.builder("sonar.lf.aboutText")
+ .name("About page text")
+ .description("Optional text that is displayed on the About page. Supports html.")
.category(CoreProperties.CATEGORY_GENERAL)
.subCategory(CoreProperties.SUBCATEGORY_LOOKNFEEL)
.type(PropertyType.TEXT)