diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-01-10 15:09:43 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-01-11 10:35:47 +0100 |
commit | f3020783d4aecd24160171f13c3cfa93bb46fe93 (patch) | |
tree | 3cfd9bbe01b14115f26d5ab5c765faffb713f03a /it/it-plugins | |
parent | 6a8201750d74dda13710b72364f2cb864d2d2eb9 (diff) | |
download | sonarqube-f3020783d4aecd24160171f13c3cfa93bb46fe93.tar.gz sonarqube-f3020783d4aecd24160171f13c3cfa93bb46fe93.zip |
SONAR-7300 Redirect PUT|POST|DELETE api/properties to api/settings
Diffstat (limited to 'it/it-plugins')
-rw-r--r-- | it/it-plugins/server-plugin/src/main/java/ServerPlugin.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/it/it-plugins/server-plugin/src/main/java/ServerPlugin.java b/it/it-plugins/server-plugin/src/main/java/ServerPlugin.java index 9b7b820dbaa..9996c90804e 100644 --- a/it/it-plugins/server-plugin/src/main/java/ServerPlugin.java +++ b/it/it-plugins/server-plugin/src/main/java/ServerPlugin.java @@ -56,6 +56,7 @@ import static org.sonar.api.PropertyType.USER_LOGIN; @Property(key = "text", name = "Text", type = TEXT, global = true, project = false), @Property(key = "multi", name = "Multi", type = STRING, multiValues = true, global = true, project = false), @Property(key = "hidden", name = "Hidden", type = STRING, global = false, project = false), + @Property(key = "project.setting", name = "Project setting", type = STRING, global = false, project = true), @Property(key = "setting.secured", name = "Secured", type = STRING, global = true, project = false), @Property(key = "sonar.jira", name = "Jira Server", type = PROPERTY_SET, propertySetKey = "jira", fields = { @PropertyField(key = "key", name = "Key", description = "Server key"), |