2023-07-23 16:44:26 +00:00
|
|
|
export const NETWORK_CHOICES: { key: 0 | 2; label: string; icon: string }[] = [
|
|
|
|
{
|
|
|
|
key: 0,
|
|
|
|
label: "Private",
|
|
|
|
icon: "lock",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 2,
|
|
|
|
label: "Public",
|
|
|
|
icon: "public",
|
|
|
|
},
|
|
|
|
];
|
2023-02-08 04:43:07 +00:00
|
|
|
|
|
|
|
export const GROUP_CHOICES = {
|
|
|
|
backlog: "Backlog",
|
|
|
|
unstarted: "Unstarted",
|
|
|
|
started: "Started",
|
|
|
|
completed: "Completed",
|
|
|
|
cancelled: "Cancelled",
|
|
|
|
};
|
|
|
|
|
|
|
|
export const PRIORITIES = ["urgent", "high", "medium", "low", null];
|
2023-03-15 20:06:21 +00:00
|
|
|
|
|
|
|
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"];
|
2023-07-13 06:04:37 +00:00
|
|
|
|
|
|
|
export const PROJECT_AUTOMATION_MONTHS = [
|
2023-07-13 11:34:24 +00:00
|
|
|
{ label: "1 Month", value: 1 },
|
2023-07-13 06:04:37 +00:00
|
|
|
{ label: "3 Months", value: 3 },
|
|
|
|
{ label: "6 Months", value: 6 },
|
|
|
|
{ label: "9 Months", value: 9 },
|
|
|
|
{ label: "12 Months", value: 12 },
|
|
|
|
];
|