Skip to content

Commit 7cde87d

Browse files
Update link to msid docs
1 parent 6800d6c commit 7cde87d

File tree

6 files changed

+555
-13
lines changed

6 files changed

+555
-13
lines changed

msal-javascript-conceptual/TOC.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
- name: Migrate apps from ADAL.js to MSAL.js
3636
href: browser/migrate-adal-js-to-msal-js.md
3737
- name: Migrate SPA from implicit to auth code flow
38-
href: browser/logout.md
39-
- name: Migrate from MSAL 1.x to MSAL 2.x
38+
href: browser/migrate-spa-implicit-to-auth-code.md
39+
- name: Migrate from MSAL v1.x to MSAL v2.x
4040
href: browser/v1-migration.md
41-
- name: Migrate from MSAL 3.x to MSAL 3.x
41+
- name: Migrate from MSAL v2.x to MSAL v3.x
4242
href: browser/v2-migration.md
4343
- name: MSAL Angular
4444
items:
File renamed without changes.

msal-javascript-conceptual/angular/initialization.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,7 @@ ms.reviewer: dmwendia,cwerner, owenrichards, kengaderdus
1111
---
1212
# Initializing MSAL Angular
1313

14-
Before using `@azure/msal-angular`, [register an application in Azure AD](https://docs.microsoft.com/azure/active-directory/develop/quickstart-register-app) to get your `clientId`.
15-
16-
In this document:
17-
- [Initialization of MSAL](#initialization-of-msal-angular)
18-
- [Include and initialize the MSAL module in your app module](#include-and-initialize-the-msal-module-in-your-app-module)
19-
- [Secure the routes in your application](#secure-the-routes-in-your-application)
20-
- [Get tokens for Web API calls](#get-tokens-for-web-api-calls)
21-
- [Subscribe to events](#subscribe-to-events)
22-
- [Next Steps](#next-steps)
14+
Before using `@azure/msal-angular`, you must first [register your application in Azure AD](/entra/identity-platform/quickstart-register-app) to get your client ID, a unique identifier for your application, also known as application ID.
2315

2416
## Include and initialize the MSAL module in your app module
2517

msal-javascript-conceptual/browser/logout.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The logout process for MSAL takes two steps.
99
1. Clear the MSAL cache.
1010
2. Clear the session on the identity server.
1111

12-
The `PublicClientApplication` object exposes 2 APIs that perform these actions.
12+
The `PublicClientApplication` object exposes two APIs that perform these actions.
1313

1414
```javascript
1515
msalInstance.logoutRedirect();

0 commit comments

Comments
 (0)