mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2025-05-17 03:48:06 +08:00
Added create group functionality
This commit is contained in:
parent
62cee96b94
commit
debaa544bc
5 changed files with 234 additions and 11 deletions
|
@ -134,6 +134,7 @@ export interface StudentStatusType {
|
|||
location: LocationType;
|
||||
landmark: string | null;
|
||||
active: boolean;
|
||||
study_group: string;
|
||||
}
|
||||
|
||||
export interface StudentStatusPatchType {
|
||||
|
@ -141,6 +142,7 @@ export interface StudentStatusPatchType {
|
|||
location?: LocationType;
|
||||
landmark?: string | null;
|
||||
active?: boolean;
|
||||
study_group?: string;
|
||||
}
|
||||
|
||||
export interface StudentStatusFilterType {
|
||||
|
@ -168,7 +170,7 @@ export interface StudentStatusFilterTypeFlattened {
|
|||
|
||||
export interface StudyGroupType {
|
||||
name: string;
|
||||
users: string[];
|
||||
students: string[];
|
||||
distance: number;
|
||||
landmark: string | null;
|
||||
location: LocationType;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue