19 lines
541 B
JavaScript
19 lines
541 B
JavaScript
const BLOCK = 'block';
|
|
const UNBLOCK = 'unblock';
|
|
const DELETE = 'delete';
|
|
const DELETE_WITH_CONTRIBUTIONS = 'deleteWithContributions';
|
|
const UNLOCK = 'unlock';
|
|
const ACTIVATE = 'activate';
|
|
const DEACTIVATE = 'deactivate';
|
|
const REJECT = 'reject';
|
|
const APPROVE = 'approve';
|
|
|
|
export const EDIT = 'edit';
|
|
|
|
export const LDAP = 'ldapBlocked';
|
|
|
|
export const LINK_ACTIONS = [APPROVE, REJECT];
|
|
|
|
export const CONFIRMATION_ACTIONS = [ACTIVATE, BLOCK, DEACTIVATE, UNLOCK, UNBLOCK];
|
|
|
|
export const DELETE_ACTIONS = [DELETE, DELETE_WITH_CONTRIBUTIONS];
|