code refactoring, remove duplicate gaurds and other files

This commit is contained in:
Gagan7900
2026-07-30 17:07:12 +05:30
parent 368d6bd540
commit 2a6f85890f
36 changed files with 943 additions and 1500 deletions
-11
View File
@@ -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;
}
-9
View File
@@ -10,13 +10,4 @@ export const environment: AppEnvironment = {
warningAfterMs: 25 * 60 * 1000,
logoutAfterMs: 30 * 60 * 1000,
},
firebase: {
apiKey: '********************************',
authDomain: '********************************',
projectId: '********************************',
storageBucket: '********************************',
messagingSenderId: '********************************',
appId: '********************************',
measurementId: '********************************',
},
};
-9
View File
@@ -16,15 +16,6 @@ export const environment: AppEnvironment = {
warningAfterMs: 25 * 60 * 1000,
logoutAfterMs: 30 * 60 * 1000,
},
firebase: {
apiKey: '********************************',
authDomain: '********************************',
projectId: '********************************',
storageBucket: '********************************',
messagingSenderId: '********************************',
appId: '********************************',
measurementId: '********************************',
},
};
/*