mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
|
export const NETWORK_CHOICES = { "0": "Secret", "2": "Public" };
|
||
|
|
||
|
export const GROUP_CHOICES = {
|
||
|
backlog: "Backlog",
|
||
|
unstarted: "Unstarted",
|
||
|
started: "Started",
|
||
|
completed: "Completed",
|
||
|
cancelled: "Cancelled",
|
||
|
};
|
||
|
|
||
|
export const PRIORITIES = ["urgent", "high", "medium", "low", null];
|