code refactoring, remove duplicate gaurds and other files
This commit is contained in:
@@ -1,13 +1,3 @@
|
||||
export interface AppFirebaseConfig {
|
||||
apiKey: string;
|
||||
authDomain: string;
|
||||
projectId: string;
|
||||
storageBucket: string;
|
||||
messagingSenderId: string;
|
||||
appId: string;
|
||||
measurementId: string;
|
||||
}
|
||||
|
||||
export interface AppSessionTimeoutConfig {
|
||||
warningAfterMs: number;
|
||||
logoutAfterMs: number;
|
||||
@@ -20,5 +10,4 @@ export interface AppEnvironment {
|
||||
masterAdmin: string;
|
||||
};
|
||||
sessionTimeout: AppSessionTimeoutConfig;
|
||||
firebase: AppFirebaseConfig;
|
||||
}
|
||||
|
||||
@@ -10,13 +10,4 @@ export const environment: AppEnvironment = {
|
||||
warningAfterMs: 25 * 60 * 1000,
|
||||
logoutAfterMs: 30 * 60 * 1000,
|
||||
},
|
||||
firebase: {
|
||||
apiKey: '********************************',
|
||||
authDomain: '********************************',
|
||||
projectId: '********************************',
|
||||
storageBucket: '********************************',
|
||||
messagingSenderId: '********************************',
|
||||
appId: '********************************',
|
||||
measurementId: '********************************',
|
||||
},
|
||||
};
|
||||
|
||||
@@ -16,15 +16,6 @@ export const environment: AppEnvironment = {
|
||||
warningAfterMs: 25 * 60 * 1000,
|
||||
logoutAfterMs: 30 * 60 * 1000,
|
||||
},
|
||||
firebase: {
|
||||
apiKey: '********************************',
|
||||
authDomain: '********************************',
|
||||
projectId: '********************************',
|
||||
storageBucket: '********************************',
|
||||
messagingSenderId: '********************************',
|
||||
appId: '********************************',
|
||||
measurementId: '********************************',
|
||||
},
|
||||
};
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user