fix: hide write permissions when editing guest group

This commit is contained in:
NGPixel 2020-05-11 00:18:58 -04:00
parent 1a33a43a0d
commit f362905623

View File

@ -63,21 +63,21 @@ export default {
permission: 'write:pages', permission: 'write:pages',
hint: 'Can create / edit pages, as specified in the Page Rules', hint: 'Can create / edit pages, as specified in the Page Rules',
warning: false, warning: false,
restrictedForSystem: false, restrictedForSystem: true,
disabled: false disabled: false
}, },
{ {
permission: 'manage:pages', permission: 'manage:pages',
hint: 'Can move existing pages as specified in the Page Rules', hint: 'Can move existing pages as specified in the Page Rules',
warning: false, warning: false,
restrictedForSystem: false, restrictedForSystem: true,
disabled: false disabled: false
}, },
{ {
permission: 'delete:pages', permission: 'delete:pages',
hint: 'Can delete existing pages, as specified in the Page Rules', hint: 'Can delete existing pages, as specified in the Page Rules',
warning: false, warning: false,
restrictedForSystem: false, restrictedForSystem: true,
disabled: false disabled: false
}, },
{ {
@ -105,14 +105,14 @@ export default {
permission: 'write:assets', permission: 'write:assets',
hint: 'Can upload new assets (such as images and files), as specified in the Page Rules', hint: 'Can upload new assets (such as images and files), as specified in the Page Rules',
warning: false, warning: false,
restrictedForSystem: false, restrictedForSystem: true,
disabled: false disabled: false
}, },
{ {
permission: 'manage:assets', permission: 'manage:assets',
hint: 'Can edit and delete existing assets (such as images and files), as specified in the Page Rules', hint: 'Can edit and delete existing assets (such as images and files), as specified in the Page Rules',
warning: false, warning: false,
restrictedForSystem: false, restrictedForSystem: true,
disabled: false disabled: false
}, },
{ {
@ -126,14 +126,14 @@ export default {
permission: 'write:comments', permission: 'write:comments',
hint: 'Can post new comments, as specified in the Page Rules', hint: 'Can post new comments, as specified in the Page Rules',
warning: false, warning: false,
restrictedForSystem: false, restrictedForSystem: true,
disabled: false disabled: false
}, },
{ {
permission: 'manage:comments', permission: 'manage:comments',
hint: 'Can edit and delete existing comments, as specified in the Page Rules', hint: 'Can edit and delete existing comments, as specified in the Page Rules',
warning: false, warning: false,
restrictedForSystem: false, restrictedForSystem: true,
disabled: false disabled: false
} }
] ]