File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 6
6
- Add GCP API client functions to support App Hosting deploy from source feature. (#8545 )
7
7
- Changed firebase init template for functions to pin runtime version on init. (#8553 )
8
8
- Fix an issue where updating a Cloud Function that retires would add incorrect fields to the updateMask. (#8560 )
9
+ - Fixed multi tenancy support for SSO users in the auth emulator (#8544 )
9
10
- Add SDK autoinit capabilities to App Hosting emulator. (#8582 )
10
11
- Provision App Hosting compute service account during init flow. (#8580 )
11
12
- Updated the Firebase Data Connect local toolkit to v2.6.1, which includes the following changes: (#8598 )
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ assert(!internalError, internalError);
21
21
22
22
var apiKey = query.get('apiKey');
23
23
var appName = query.get('appName');
24
+ var tenantId = query.get('tid');
24
25
var authType = query.get('authType');
25
26
var providerId = query.get('providerId');
26
27
var redirectUrl = query.get('redirectUrl');
@@ -192,7 +193,7 @@ function finishWithUser(urlEncodedIdToken, email) {
192
193
urlResponse: url,
193
194
sessionId: "ValueNotUsedByAuthEmulator",
194
195
postBody: "",
195
- tenantId: null ,
196
+ tenantId: tenantId ,
196
197
error: null,
197
198
});
198
199
}
You can’t perform that action at this time.
0 commit comments