vikunja-frontend/src/constants/rights.ts

7 lines
136 B
TypeScript
Raw Permalink Normal View History

2022-06-23 01:14:58 +00:00
export const RIGHTS = {
'READ': 0,
'READ_WRITE': 1,
'ADMIN': 2,
} as const
export type Right = typeof RIGHTS[keyof typeof RIGHTS]