2022-12-05 05:57:14 +00:00
|
|
|
export const PRIORITIES = ["urgent", "high", "medium", "low"];
|
2022-12-06 04:41:56 +00:00
|
|
|
|
|
|
|
export const ROLE = {
|
|
|
|
5: "Guest",
|
|
|
|
10: "Viewer",
|
|
|
|
15: "Member",
|
|
|
|
20: "Admin",
|
|
|
|
};
|
2022-12-08 14:59:12 +00:00
|
|
|
|
|
|
|
export const NETWORK_CHOICES = { "0": "Secret", "2": "Public" };
|
2022-12-13 13:15:23 +00:00
|
|
|
|
|
|
|
export const GROUP_CHOICES = {
|
|
|
|
backlog: "Backlog",
|
|
|
|
unstarted: "Unstarted",
|
|
|
|
started: "Started",
|
|
|
|
completed: "Completed",
|
|
|
|
cancelled: "Cancelled",
|
|
|
|
};
|