diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-02-24 15:32:16 +0100 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-02-27 16:07:38 +0100 |
commit | f041aebb79ac063a86d5a48526addeb8988b8a80 (patch) | |
tree | f5abe8f7acb6d08ed05e3e1751e5af476a637264 /sonar-plugin-api | |
parent | ade384ed801f26543f63281d3e5d82e75f89eba1 (diff) | |
download | sonarqube-f041aebb79ac063a86d5a48526addeb8988b8a80.tar.gz sonarqube-f041aebb79ac063a86d5a48526addeb8988b8a80.zip |
Allow to set a default assignee on issues (2nd edition) - SONAR-6154
integrates my last 3 commits as the merge broke previous commit on branch-5.2
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java index 1df01833ae5..39d28c1b8cc 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java @@ -60,6 +60,11 @@ public interface CoreProperties { String SUBCATEGORY_LOOKNFEEL = "looknfeel"; /** + * @since 5.1 + */ + String SUBCATEGORY_ISSUES = "issues"; + + /** * @since 4.0 */ String SUBCATEGORY_L10N = "localization"; @@ -564,4 +569,9 @@ public interface CoreProperties { */ String IMPORT_UNKNOWN_FILES_KEY = "sonar.import_unknown_files"; + /** + * @since 5.1 + */ + String DEFAULT_ISSUE_ASSIGNEE = "sonar.issues.defaultAssigneeLogin"; + } |