/**
 * CASL actions. `Manage` is CASL's wildcard meaning "any action".
 * Stored permissions are named "<action> <subject>" (e.g. "read Role",
 * "manage all"), so these values are the first token of a permission name.
 */
export enum Action {
  Manage = 'manage',
  Create = 'create',
  Read = 'read',
  Update = 'update',
  Delete = 'delete',
  Export = 'export',
}
