mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
14 lines
238 B
TypeScript
14 lines
238 B
TypeScript
|
export const ROLE = {
|
||
|
5: "Guest",
|
||
|
10: "Viewer",
|
||
|
15: "Member",
|
||
|
20: "Admin",
|
||
|
};
|
||
|
|
||
|
export const COMPANY_SIZE = [
|
||
|
{ value: 5, label: "5" },
|
||
|
{ value: 10, label: "10" },
|
||
|
{ value: 25, label: "25" },
|
||
|
{ value: 50, label: "50" },
|
||
|
];
|