Skip to content

Commit fb2f127

Browse files
committed
Remove query params for CIAM test slice
1 parent da1e910 commit fb2f127

9 files changed

Lines changed: 0 additions & 30 deletions

File tree

1-Authentication/0-sign-in-vanillajs/App/public/authConfig.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@ const msalConfig = {
4747
*/
4848
const loginRequest = {
4949
scopes: [],
50-
extraQueryParameters: {
51-
dc: "ESTS-PUB-EUS-AZ1-FD000-TEST1"
52-
}
5350
};
5451

5552
/**

1-Authentication/1-sign-in-react/SPA/src/authConfig.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,6 @@ export const msalConfig = {
5858
*/
5959
export const loginRequest = {
6060
scopes: [],
61-
extraQueryParameters: {
62-
dc: "ESTS-PUB-EUS-AZ1-FD000-TEST1"
63-
}
6461
};
6562

6663
/**

1-Authentication/2-sign-in-angular/SPA/src/app/auth-config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,4 @@ export const msalConfig: Configuration = {
4545
*/
4646
export const loginRequest = {
4747
scopes: [],
48-
extraQueryParameters: {
49-
dc: "ESTS-PUB-EUS-AZ1-FD000-TEST1"
50-
}
5148
};

1-Authentication/3-sign-in-electron/App/AuthProvider.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ class AuthProvider {
3030
// by default, MSAL will add the OIDC scopes to every token request, so we omit those here
3131
scopes: [],
3232
prompt: 'create',
33-
extraQueryParameters: {
34-
dc: 'ESTS-PUB-EUS-AZ1-FD000-TEST1', // STS CIAM test slice
35-
},
3633
});
3734

3835
return this.handleResponse(authResponse);
@@ -43,9 +40,6 @@ class AuthProvider {
4340
// If there are scopes that you would like users to consent up front, add them below
4441
// by default, MSAL will add the OIDC scopes to every token request, so we omit those here
4542
scopes: [],
46-
extraQueryParameters: {
47-
dc: 'ESTS-PUB-EUS-AZ1-FD000-TEST1', // STS CIAM test slice
48-
},
4943
});
5044

5145
return this.handleResponse(authResponse);

1-Authentication/4-sign-in-device-code/App/authConfig.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ const msalConfig = {
2929
*/
3030
const loginRequest = {
3131
scopes: [],
32-
extraQueryParameters: {
33-
dc: 'ESTS-PUB-EUS-AZ1-FD000-TEST1', // STS CIAM test slice
34-
},
3532
};
3633

3734
module.exports = {

1-Authentication/5-sign-in-express/App/auth/AuthProvider.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ class AuthProvider {
3939
* https://docs.microsoft.com/azure/active-directory/develop/v2-permissions-and-consent#openid-connect-scopes
4040
*/
4141
scopes: [],
42-
extraQueryParameters: {
43-
dc: 'ESTS-PUB-EUS-AZ1-FD000-TEST1', // STS CIAM test slice
44-
},
4542
};
4643

4744
const authCodeRequestParams = {

1-Authentication/6-sign-in-node-cli-app/App/authConfig.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ const msalConfig = {
2929
*/
3030
const loginRequest = {
3131
scopes: [],
32-
extraQueryParameters: {
33-
dc: 'ESTS-PUB-EUS-AZ1-FD000-TEST1', // STS CIAM test slice
34-
},
3532
};
3633

3734
module.exports = {

2-Authorization/1-call-api-react/SPA/src/authConfig.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,4 @@ export const protectedResources = {
7474
*/
7575
export const loginRequest = {
7676
scopes: [...protectedResources.toDoListAPI.scopes.read, ...protectedResources.toDoListAPI.scopes.write],
77-
extraQueryParameters: {
78-
dc: "ESTS-PUB-EUS-AZ1-FD000-TEST1"
79-
}
8077
};

2-Authorization/4-call-api-express/App/auth/AuthProvider.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ class AuthProvider {
4040
* https://docs.microsoft.com/azure/active-directory/develop/v2-permissions-and-consent#openid-connect-scopes
4141
*/
4242
scopes: [],
43-
extraQueryParameters: {
44-
dc: 'ESTS-PUB-EUS-AZ1-FD000-TEST1', // STS CIAM test slice
45-
},
4643
};
4744

4845
const authCodeRequestParams = {

0 commit comments

Comments
 (0)