Added create group functionality

This commit is contained in:
Keannu Christian Bernasol 2023-09-28 21:03:04 +08:00
parent 62cee96b94
commit debaa544bc
5 changed files with 234 additions and 11 deletions

View file

@ -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;