Renamed the admin type to corporate

This commit is contained in:
Tiago Ribeiro
2023-10-27 00:43:05 +01:00
parent 15f8d25bc9
commit 0aefbb85ec
11 changed files with 38 additions and 237 deletions

View File

@@ -65,5 +65,5 @@ export interface Group {
disableEditing?: boolean;
}
export type Type = "student" | "teacher" | "admin" | "owner" | "developer";
export const userTypes: Type[] = ["student", "teacher", "admin", "owner", "developer"];
export type Type = "student" | "teacher" | "corporate" | "owner" | "developer";
export const userTypes: Type[] = ["student", "teacher", "corporate", "owner", "developer"];