Improved revalidation and added drop down menus to onboarding

This commit is contained in:
Keannu Christian Bernasol 2023-07-06 17:19:19 +08:00
parent f4ca96e35d
commit bccc808150
7 changed files with 218 additions and 26 deletions

View file

@ -46,3 +46,21 @@ export interface ActivationParams {
uid: string;
token: string;
}
export interface SemesterParams {
id: string;
name: string;
shortname: string;
}
export interface YearLevelParams {
id: string;
name: string;
shortname: string;
}
export interface CourseParams {
id: string;
name: string;
shortname: string;
}