Added the ability to create groups

This commit is contained in:
Tiago Ribeiro
2023-09-28 11:40:01 +01:00
parent 7af607d476
commit 75fb6ab197
10 changed files with 755 additions and 6 deletions

View File

@@ -50,5 +50,12 @@ export interface Stat {
};
}
export interface Group {
admin: string;
name: string;
participants: string[];
id: string;
}
export type Type = "student" | "teacher" | "admin" | "owner" | "developer";
export const userTypes: Type[] = ["student", "teacher", "admin", "owner", "developer"];