UNPKG

ghost

Version:

The professional publishing platform

68 lines (64 loc) 1.42 kB
const {combineTransactionalMigrations, createRemovePermissionMigration} = require('../../utils'); const ROLES = [ 'Admin Integration', 'Administrator', 'Author', 'Editor', 'Contributor' ]; const PERMISSIONS = [ { name: 'Browse clients', object: 'client', action: 'browse' }, { name: 'Read clients', object: 'client', action: 'read' }, { name: 'Edit clients', object: 'client', action: 'edit' }, { name: 'Add clients', object: 'client', action: 'add' }, { name: 'Delete clients', object: 'client', action: 'delete' }, { name: 'Browse subscribers', object: 'subscriber', action: 'browse' }, { name: 'Read subscribers', object: 'subscriber', action: 'read' }, { name: 'Edit subscribers', object: 'subscriber', action: 'edit' }, { name: 'Add subscribers', object: 'subscriber', action: 'add' }, { name: 'Delete subscribers', object: 'subscriber', action: 'delete' } ]; module.exports = combineTransactionalMigrations(...PERMISSIONS.map(p => createRemovePermissionMigration(p, ROLES))); module.exports.down = async function () { // no-op: we don't want to re-add the permissions };