2021-01-13 11:25:45 -08:00
|
|
|
// This configures the apostrophe-users module to add an admin-level
|
|
|
|
|
// group by default:
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
scripts: [
|
|
|
|
|
{name: 'init'}
|
|
|
|
|
],
|
|
|
|
|
groups: [
|
|
|
|
|
{
|
|
|
|
|
title: 'guest',
|
|
|
|
|
permissions: []
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'AVES',
|
2021-01-16 15:30:06 -08:00
|
|
|
permissions: ["AVES"]
|
2021-01-13 11:25:45 -08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'AVHS',
|
2021-01-16 15:30:06 -08:00
|
|
|
permissions: ["AVHS"]
|
2021-01-13 11:25:45 -08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'AVAS',
|
2021-01-16 15:30:06 -08:00
|
|
|
permissions: ["AVAS"]
|
2021-01-13 11:25:45 -08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'AVUSD',
|
2021-01-16 15:30:06 -08:00
|
|
|
permissions: ['AVUSD']
|
2021-01-13 11:25:45 -08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'admin',
|
|
|
|
|
permissions: ['admin']
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
};
|