forked from github/plane
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];
|