♻️(models) rename document/template access rights
The "member" access right does not make sense for documents and templates. What we really need are "editor" and "reader" access rights.
This commit is contained in:
committed by
Samuel Paccoud
parent
51325df7d9
commit
926fe37e85
@@ -12,7 +12,8 @@ export interface Access {
|
||||
}
|
||||
|
||||
export enum Role {
|
||||
MEMBER = 'member',
|
||||
READER = 'reader',
|
||||
EDITOR = 'editor',
|
||||
ADMIN = 'administrator',
|
||||
OWNER = 'owner',
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
export enum Role {
|
||||
MEMBER = 'member',
|
||||
READER = 'reader',
|
||||
EDITOR = 'editor',
|
||||
ADMIN = 'administrator',
|
||||
OWNER = 'owner',
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user