Skip to content

Commit afd9a59

Browse files
committed
Merge branch 'stable' into master
2 parents 06ff2a5 + c5945b5 commit afd9a59

4 files changed

Lines changed: 1 addition & 5 deletions

File tree

src/client/core/aad/aad-config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ export interface AADConfig {
22
tenant: string;
33
clientId: string;
44
redirectUri: string;
5-
logoutRedirectUri: string;
65
}

src/client/core/aad/auth/aad.service.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ import { UserDecoder } from "./user-decoder";
2626
const aadConfig: AADConfig = {
2727
tenant: "common",
2828
clientId: "04b07795-8ddb-461a-bbee-02f9e1bf7b46", // Azure CLI
29-
redirectUri: "urn:ietf:wg:oauth:2.0:oob",
30-
logoutRedirectUri: "urn:ietf:wg:oauth:2.0:oob/logout",
29+
redirectUri: "https://login.microsoftonline.com/common/oauth2/nativeclient",
3130
};
3231

3332
@Injectable()

src/client/core/aad/authentication/authentication.service.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ const CONFIG = {
1212
tenant: "common",
1313
clientId: "abc",
1414
redirectUri: "http://localhost",
15-
logoutRedirectUri: "http://localhost",
1615
};
1716

1817
const FAKE_TOKEN = {

src/test/utils/mocks/auth/auth-provider.mock.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ export const createMockClientApplication = () => {
7272
tenant: null,
7373
clientId: null,
7474
redirectUri: null,
75-
logoutRedirectUri: null
7675
});
7776
return new MockClientApplication(fakeAuthProvider);
7877
};

0 commit comments

Comments
 (0)