extend the initial user data

This commit is contained in:
Sven Czarnian
2022-11-04 21:31:01 +01:00
parent 6be1bf0f43
commit f1f76aa6b9
2 changed files with 2 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ const InitialAuthState: IAuthState = {
user: {
vatsimId: '',
fullName: '',
radarScopeKey: '',
administrator: false,
airportConfigurationAccess: [],
},

View File

@@ -7,6 +7,7 @@ export interface AirportOverview {
export interface User {
vatsimId: string;
fullName: string;
radarScopeKey: string;
administrator: boolean;
airportConfigurationAccess: string[];
};