Added the ability to create groups
This commit is contained in:
@@ -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"];
|
||||
|
||||
Reference in New Issue
Block a user