Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3ea9764
[identity] Add support for additional tenants
mpodwysocki Sep 9, 2022
484a14e
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-js into…
mpodwysocki Sep 10, 2022
562afb0
[identity] cleaning up code
mpodwysocki Sep 13, 2022
7367d1d
[identity] add identity resolver code
mpodwysocki Sep 13, 2022
445c1bc
[identity] add identity resolution to getToken methods
mpodwysocki Sep 14, 2022
1663d92
[identity] clean up per comments
mpodwysocki Sep 14, 2022
ef093a4
[identity] clean up per comments
mpodwysocki Sep 14, 2022
21623f3
[identity] clean up per comments
mpodwysocki Sep 14, 2022
fc1be4d
[identity] clean up per comments
mpodwysocki Sep 14, 2022
6dcc6f0
[identity] clean up per comments
mpodwysocki Sep 14, 2022
0e2c5f5
[identity] formatting and linting
mpodwysocki Sep 14, 2022
6951aaf
Update sdk/identity/identity/src/credentials/environmentCredential.ts
mpodwysocki Sep 14, 2022
6a58689
[identity] formatting and linting
mpodwysocki Sep 14, 2022
4d0329b
Merge branch 'feat/id-allow' of https://github.com/mpodwysocki/azure-…
mpodwysocki Sep 14, 2022
ad18730
[identity] formatting and linting
mpodwysocki Sep 14, 2022
60a24ef
[identity] formatting and linting
mpodwysocki Sep 15, 2022
4056bcf
[identity] formatting and linting
mpodwysocki Sep 15, 2022
e919f86
[identity] formatting and linting
mpodwysocki Sep 15, 2022
5c31154
[identity] formatting and linting
mpodwysocki Sep 15, 2022
87d1180
[identity] adding tests
mpodwysocki Sep 15, 2022
19c1b03
[identity] adding tests for browser
mpodwysocki Sep 15, 2022
693f8e0
[identity] adding documentation
mpodwysocki Sep 16, 2022
4545e87
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-js into…
mpodwysocki Sep 19, 2022
6594ddf
[identity] version bump
mpodwysocki Sep 19, 2022
b4f17e3
Update sdk/identity/identity/CHANGELOG.md
mpodwysocki Sep 19, 2022
fadfb28
[identity] refactor code
mpodwysocki Sep 19, 2022
1e2a7bb
Merge branch 'feat/id-allow' of https://github.com/mpodwysocki/azure-…
mpodwysocki Sep 19, 2022
cae80c3
[identity] refactor code
mpodwysocki Sep 19, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@ export class EnvironmentCredential implements TokenCredential {
clientSecret = process.env.AZURE_CLIENT_SECRET;

const additionallyAllowedTenantIds = getAdditionallyAllowedTenants();
const newOptions = options || {};
newOptions.additionallyAllowedTenants = additionallyAllowedTenantIds;
const newOptions = { ...options, additionallyAllowedTenantIds };

if (tenantId) {
checkTenantId(logger, tenantId);
Expand Down