forked from github/plane
3f3fb373cc
* style: select month modal * chore: automation setting dropdown updated ,style: month dropdown styling * chore: restore issue alert message updated * chore: archive issue fetching updated and code refactor * fix: build fix
37 lines
790 B
TypeScript
37 lines
790 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];
|
|
|
|
export const MONTHS = [
|
|
"January",
|
|
"February",
|
|
"March",
|
|
"April",
|
|
"May",
|
|
"June",
|
|
"July",
|
|
"August",
|
|
"September",
|
|
"October",
|
|
"November",
|
|
"December",
|
|
];
|
|
|
|
export const DAYS = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
|
|
|
|
export const PROJECT_AUTOMATION_MONTHS = [
|
|
{ label: "1 Month", value: 1 },
|
|
{ label: "3 Months", value: 3 },
|
|
{ label: "6 Months", value: 6 },
|
|
{ label: "9 Months", value: 9 },
|
|
{ label: "12 Months", value: 12 },
|
|
];
|