Skip to content
This repository has been archived by the owner on Aug 20, 2021. It is now read-only.

Commit

Permalink
fix(perms) remove unused perms
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasGeraud committed Sep 5, 2018
1 parent 8871828 commit 2d05c51
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Expand Up @@ -21,7 +21,6 @@
*/
public enum ManagementPermission implements Permission {
INSTANCE( "INSTANCE", 1000),
VIEW( "VIEW", 1100),
GROUP( "GROUP", 1200),
TAG( "TAG", 1300),
TENANT( "TENANT", 1400),
Expand Down
Expand Up @@ -91,7 +91,6 @@ protected void doStart() throws Exception {
perms.put(ManagementPermission.TAG.getName(), new char[]{READ.getId()});
perms.put(ManagementPermission.GROUP.getName(), new char[]{READ.getId()});
perms.put(ManagementPermission.TENANT.getName(), new char[]{READ.getId()});
perms.put(ManagementPermission.VIEW.getName(), new char[]{READ.getId()});
perms.put(ManagementPermission.ROLE.getName(), new char[]{READ.getId()});
roleService.create(new NewRoleEntity(
"API_PUBLISHER",
Expand Down

0 comments on commit 2d05c51

Please sign in to comment.