tianji/src/server/utils/const.ts
2023-09-03 03:49:20 +08:00

10 lines
149 B
TypeScript

export const ROLES = {
// System Role
admin: 'admin',
user: 'user',
// Workspace Role
owner: 'owner',
readOnly: 'readOnly',
} as const;