We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4de54a commit c57ee4aCopy full SHA for c57ee4a
src/main/java/io/jenkins/plugins/thememanager/ThemeUserProperty.java
@@ -70,5 +70,16 @@ public String getDisplayName() {
70
public UserProperty newInstance(User user) {
71
return new ThemeUserProperty();
72
}
73
+
74
+ // @Override
75
+ // public @NonNull UserPropertyCategory getUserPropertyCategory() {
76
+ // return UserPropertyCategory.get(UserPropertyCategory.Appearance.class);
77
+ // }
78
79
+ // replace with above method when bumping core to version including:
80
+ // https://github.com/jenkinsci/jenkins/pull/7268
81
+ public @CheckForNull String getUserPropertyCategoryAsString() {
82
+ return "appearance";
83
+ }
84
85
0 commit comments