Skip to content
Snippets Groups Projects
Commit adecf553 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

short description of different PrivilegeTypes added

parent b2094434
No related branches found
No related tags found
2 merge requests!836Resolve "Implement Spring Security",!613WIP: New Minerva Security Layer
......@@ -4,12 +4,12 @@ import lcsb.mapviewer.model.Project;
public enum PrivilegeType {
READ_PROJECT(Project.class, ""),
WRITE_PROJECT(Project.class, ""),
IS_ADMIN(null, ""),
IS_CURATOR(null, ""),
READ_PROJECT(Project.class, "View project"),
WRITE_PROJECT(Project.class, "Modify project"),
IS_ADMIN(null, "Admin"),
IS_CURATOR(null, "Curator"),
IS_ANON(null, ""),
CAN_CREATE_OVERLAYS(null, "");
CAN_CREATE_OVERLAYS(null, "Can create data overlays");
private Class<?> privilegeObjectType;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment