Agent/packages/shared/constants.js

17 lines
246 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use strict';
/**
* RBAC actions 位掩码migration-plan §4.1.1
* 组合用按位或READ|WRITE = 3
*/
const ACTIONS = {
READ: 1,
WRITE: 2,
DELETE: 4,
IMPORT: 8,
EXPORT: 16,
APPROVE: 32,
};
module.exports = { ACTIONS };