forked from github/plane
c9b1a2590a
refractor: followed naming convension and made components easy to use
19 lines
373 B
TypeScript
19 lines
373 B
TypeScript
export const PRIORITIES = ["urgent", "high", "medium", "low"];
|
|
|
|
export const ROLE = {
|
|
5: "Guest",
|
|
10: "Viewer",
|
|
15: "Member",
|
|
20: "Admin",
|
|
};
|
|
|
|
export const NETWORK_CHOICES = { "0": "Secret", "2": "Public" };
|
|
|
|
export const GROUP_CHOICES = {
|
|
backlog: "Backlog",
|
|
unstarted: "Unstarted",
|
|
started: "Started",
|
|
completed: "Completed",
|
|
cancelled: "Cancelled",
|
|
};
|