Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit daa8ffb

Browse files
feat: add Firebase appId property
1 parent 06d9ba7 commit daa8ffb

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

studio/src/app/services/core/environment/environment-config.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export interface EnvironmentFirebaseConfig {
66
projectId: string;
77
messagingSenderId: string;
88
storageUrl: string;
9+
appId: string;
910
}
1011

1112
export interface EnvironmentTenorConfig {

studio/src/global/app-dev.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ setupDeckGoConfig({
2828
projectId: '<@FIREBASE_PROJECT_ID@>',
2929
storageBucket: '<@FIREBASE_STORAGE_BUCKET@>',
3030
messagingSenderId: '<@FIREBASE_MESSAGING_SENDER_ID@>',
31-
storageUrl: '<@FIREBASE_STORAGE_URL@>'
31+
storageUrl: '<@FIREBASE_STORAGE_URL@>',
32+
appId: '<@FIREBASE_APP_ID@>'
3233
},
3334
tenor: {
3435
url: 'https://api.tenor.com/v1/',

studio/src/global/app.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ setupDeckGoConfig({
2828
projectId: '<@FIREBASE_PROJECT_ID@>',
2929
storageBucket: '<@FIREBASE_STORAGE_BUCKET@>',
3030
messagingSenderId: '<@FIREBASE_MESSAGING_SENDER_ID@>',
31-
storageUrl: '<@FIREBASE_STORAGE_URL@>'
31+
storageUrl: '<@FIREBASE_STORAGE_URL@>',
32+
appId: '<@FIREBASE_APP_ID@>'
3233
},
3334
tenor: {
3435
url: 'https://api.tenor.com/v1/',

0 commit comments

Comments
 (0)