Browse Source
fix(admin): update admin groups page rules write:pages label to match actual permissions
pull/5498/head
Nicolas Giard
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
client/components/admin/admin-groups-edit-rules.vue
|
|
@ -214,8 +214,8 @@ export default { |
|
|
|
return { |
|
|
|
roles: [ |
|
|
|
{ text: 'Read Pages', value: 'read:pages', icon: 'mdi-file-eye-outline' }, |
|
|
|
{ text: 'Create Pages', value: 'write:pages', icon: 'mdi-file-plus-outline' }, |
|
|
|
{ text: 'Edit + Move Pages', value: 'manage:pages', icon: 'mdi-file-document-edit-outline' }, |
|
|
|
{ text: 'Create + Edit Pages', value: 'write:pages', icon: 'mdi-file-plus-outline' }, |
|
|
|
{ text: 'Rename / Move Pages', value: 'manage:pages', icon: 'mdi-file-document-edit-outline' }, |
|
|
|
{ text: 'Delete Pages', value: 'delete:pages', icon: 'mdi-file-remove-outline' }, |
|
|
|
{ text: 'View Pages Source', value: 'read:source', icon: 'mdi-code-tags' }, |
|
|
|
{ text: 'View Pages History', value: 'read:history', icon: 'mdi-history' }, |
|
|
|