fix: setup groups crash
This commit is contained in:
parent
771935ee68
commit
4bee20e664
@ -211,15 +211,15 @@ module.exports = () => {
|
||||
const adminGroup = await WIKI.models.groups.query().insert({
|
||||
name: 'Administrators',
|
||||
permissions: JSON.stringify(['manage:system']),
|
||||
pageRules: [],
|
||||
pageRules: JSON.stringify([]),
|
||||
isSystem: true
|
||||
})
|
||||
const guestGroup = await WIKI.models.groups.query().insert({
|
||||
name: 'Guests',
|
||||
permissions: JSON.stringify(['read:pages']),
|
||||
pageRules: [
|
||||
pageRules: JSON.stringify([
|
||||
{ id: 'guest', roles: ['READ', 'AS_READ', 'CM_READ'], match: 'START', deny: false, path: '', locales: [] }
|
||||
],
|
||||
]),
|
||||
isSystem: true
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user