22 lines
591 B
TypeScript
22 lines
591 B
TypeScript
const PERMISSIONS = {
|
|
// Show own and others balance
|
|
SHOW: 'balance_show',
|
|
SHOW_OTHER: 'balance_show_others',
|
|
// Credit balance (give)
|
|
CREDIT: 'balance_credit',
|
|
// Debit balance (take)
|
|
DEBIT: 'balance_debit',
|
|
// Debit own balance only
|
|
DEBIT_OWN: 'balance_debit_own',
|
|
// Send from to other
|
|
SEND: 'balance_send',
|
|
// Send from other to another
|
|
SEND_OTHER: 'balance_send_others',
|
|
// Can set limit for users
|
|
SET_LIMIT: 'balance_set_limit',
|
|
//Allow sending / sub while exceeding the set limit
|
|
EXCEED_LIMIT: 'balance_exceed_limit',
|
|
};
|
|
|
|
export default PERMISSIONS;
|