'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 };