forked from github/plane
13 lines
705 B
TypeScript
13 lines
705 B
TypeScript
|
export const USER_ROLES = [
|
||
|
{ value: "Product / Project Manager", label: "Product / Project Manager" },
|
||
|
{ value: "Development / Engineering", label: "Development / Engineering" },
|
||
|
{ value: "Founder / Executive", label: "Founder / Executive" },
|
||
|
{ value: "Freelancer / Consultant", label: "Freelancer / Consultant" },
|
||
|
{ value: "Marketing / Growth", label: "Marketing / Growth" },
|
||
|
{ value: "Sales / Business Development", label: "Sales / Business Development" },
|
||
|
{ value: "Support / Operations", label: "Support / Operations" },
|
||
|
{ value: "Student / Professor", label: "Student / Professor" },
|
||
|
{ value: "Human Resources", label: "Human Resources" },
|
||
|
{ value: "Other", label: "Other" },
|
||
|
];
|