diff options
author | James Moger <james.moger@gitblit.com> | 2012-10-19 21:32:57 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-10-19 22:47:34 -0400 |
commit | 822dfe5d6f1b97b7849bc6fd735ee8c9d1103c19 (patch) | |
tree | 4c97cc8056ad3ce928119aff786ad3c89bb3546a /src/com/gitblit/Constants.java | |
parent | 97a71565f6ff5d9722788559ce638863a9e618ab (diff) | |
download | gitblit-822dfe5d6f1b97b7849bc6fd735ee8c9d1103c19.tar.gz gitblit-822dfe5d6f1b97b7849bc6fd735ee8c9d1103c19.zip |
Completed permissions UI, RPC, and Manager support (issue 36)
Diffstat (limited to 'src/com/gitblit/Constants.java')
-rw-r--r-- | src/com/gitblit/Constants.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/com/gitblit/Constants.java b/src/com/gitblit/Constants.java index 0e68355e..970c3db5 100644 --- a/src/com/gitblit/Constants.java +++ b/src/com/gitblit/Constants.java @@ -255,6 +255,7 @@ public class Constants { LIST_USERS, CREATE_USER, EDIT_USER, DELETE_USER,
LIST_TEAMS, CREATE_TEAM, EDIT_TEAM, DELETE_TEAM,
LIST_REPOSITORY_MEMBERS, SET_REPOSITORY_MEMBERS, LIST_REPOSITORY_TEAMS, SET_REPOSITORY_TEAMS,
+ LIST_REPOSITORY_MEMBER_PERMISSIONS, SET_REPOSITORY_MEMBER_PERMISSIONS, LIST_REPOSITORY_TEAM_PERMISSIONS, SET_REPOSITORY_TEAM_PERMISSIONS,
LIST_FEDERATION_REGISTRATIONS, LIST_FEDERATION_RESULTS, LIST_FEDERATION_PROPOSALS, LIST_FEDERATION_SETS,
EDIT_SETTINGS, LIST_STATUS;
@@ -379,6 +380,10 @@ public class Constants { }
}
+ public static enum RegistrantType {
+ REPOSITORY, USER, TEAM;
+ }
+
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface Unused {
|