forked from github/plane
11 lines
216 B
TypeScript
11 lines
216 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" };
|