Added the ability to view how many students and teachers an admin has

This commit is contained in:
Tiago Ribeiro
2023-10-27 00:28:29 +01:00
parent bdb0ffde95
commit c0269fca45
3 changed files with 108 additions and 17 deletions

View File

@@ -14,11 +14,14 @@ export interface User {
bio: string;
isVerified: boolean;
demographicInformation?: DemographicInformation;
companyInformation?: CompanyInformation;
subscriptionExpirationDate?: null | Date;
isDisabled?: boolean;
registrationDate?: Date;
}
export interface CompanyInformation {}
export interface DemographicInformation {
country: string;
phone: string;