You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-infisical/backend/src/variables/organization.ts

13 lines
290 B

// membership roles
export const OWNER = "owner";
export const ADMIN = "admin";
export const MEMBER = "member";
export const VIEWER = "viewer";
export const CUSTOM = "custom";
// membership statuses
export const INVITED = "invited";
// -- organization
export const ACCEPTED = "accepted";