plane/apps/app/constants/index.ts
Dakshesh Jain c9b1a2590a feat: create/update state according to group from project settings pages
refractor: followed naming convension and made components easy to use
2022-12-13 18:45:23 +05:30

19 lines
373 B
TypeScript

export const PRIORITIES = ["urgent", "high", "medium", "low"];
export const ROLE = {
5: "Guest",
10: "Viewer",
15: "Member",
20: "Admin",
};
export const NETWORK_CHOICES = { "0": "Secret", "2": "Public" };
export const GROUP_CHOICES = {
backlog: "Backlog",
unstarted: "Unstarted",
started: "Started",
completed: "Completed",
cancelled: "Cancelled",
};