12 lines
378 B
JavaScript
12 lines
378 B
JavaScript
export const actions = ["count", "stat", "download", "select", "aggregate", "create", "remove", "update", "revoke", "award", "deny"];
|
|
export const UsageActionDef = {
|
|
stm: {
|
|
revoke: ['granted', "revoked"],
|
|
award: ['unused', 'granted'],
|
|
deny: [['unused', 'granted'], 'denied'],
|
|
}
|
|
};
|
|
export const actionDefDict = {
|
|
usageState: UsageActionDef
|
|
};
|