Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 18bd309

Browse files
committed
Fix metadata
1 parent 031c24a commit 18bd309

File tree

11 files changed

+59
-48
lines changed

11 files changed

+59
-48
lines changed

1-Authentication/1-sign-in/README.md

+13-12
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@
22
page_type: sample
33
description: This sample demonstrates an Angular single-page application (SPA) that lets users sign-in with Azure Active Directory (Azure AD) using the Microsoft Authentication Library for Angular (MSAL Angular).
44
languages:
5-
- javascript
6-
- typescript
5+
- javascript
6+
- typescript
77
products:
8-
- azure-active-directory-b2c
9-
- msal-js
10-
- msal-angular
11-
- microsoft-authentication-library
8+
- azure-active-directory-b2c
9+
- msal-js
10+
- msal-angular
11+
- microsoft-authentication-library
12+
- entra
1213
urlFragment: spa-msal-angular-aad
1314
extensions:
14-
- services: ms-identity
15-
- platform: JavaScript
16-
- endpoint: AAD v2.0
17-
- level: 100
18-
- client: Angular SPA
19-
- service:
15+
services: ms-identity
16+
platform: JavaScript
17+
endpoint: AAD v2.0
18+
level: 100
19+
client: Angular SPA
20+
service:
2021
---
2122

2223
# Angular single-page application using MSAL Angular to sign-in users with Azure Active Directory

1-Authentication/2-sign-in-b2c/README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ products:
99
- msal-js
1010
- msal-angular
1111
- microsoft-authentication-library
12+
- entra
1213
urlFragment: spa-msal-angular-b2c
1314
extensions:
14-
- services: ms-identity
15-
- platform: JavaScript
16-
- endpoint: AAD v2.0
17-
- level: 100
18-
- client: Angular SPA
19-
- service:
15+
services: ms-identity
16+
platform: JavaScript
17+
endpoint: AAD v2.0
18+
level: 100
19+
client: Angular SPA
20+
service:
2021
---
2122

2223
# Angular single-page application using MSAL Angular to sign-in users against Azure AD B2C

2-Authorization-I/1-call-graph/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ products:
1010
- ms-graph
1111
- msal-angular
1212
- microsoft-authentication-library
13+
- entra
1314
urlFragment: spa-msal-angular-graph
1415
description: This sample demonstrates an Angular single-page application (SPA) that uses Microsoft Authentication Library for Angular (MSAL Angular) to sign-in users with Azure Active Directory (Azure AD) and calls Microsoft Graph API
1516
---

3-Authorization-II/1-call-api/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ products:
1111
- aspnet-core
1212
- msal-angular
1313
- microsoft-authentication-library
14+
- entra
1415
urlFragment: spa-msal-angular-netcore
1516
description: This sample demonstrates an Angular single-page application (SPA) to sign-in users and call a ASP.NET Core web API secured with Azure Active Directory (Azure AD) using the Microsoft Authentication Library for Angular (MSAL Angular) for the SPA and the Microsoft.Identity.Web (MIW) for the web API.
1617
---

3-Authorization-II/2-call-api-b2c/README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ products:
1111
- msal-angular
1212
- microsoft-identity-web
1313
- microsoft-authentication-library
14+
- entra
1415
urlFragment: spa-msal-angular-b2c-netcore
1516
extensions:
16-
- services: ms-identity
17-
- platform: JavaScript
18-
- endpoint: AAD v2.0
19-
- level: 200
20-
- client: Angular SPA
21-
- service: .NET Core web API
17+
services: ms-identity
18+
platform: JavaScript
19+
endpoint: AAD v2.0
20+
level: 200
21+
client: Angular SPA
22+
service: .NET Core web API
2223
---
2324

2425
# Angular single-page application that authenticates users with Azure AD B2C and calls a protected .NET Core web API

4-Deployment/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ products:
99
- msal-js
1010
- msal-angular
1111
- microsoft-authentication-library
12+
- entra
1213
urlFragment: msal-angular-deploy-azure-cloud
1314
---
1415

5-AccessControl/1-call-api-roles/README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ products:
1010
- msal-angular
1111
- microsoft-identity-web
1212
- microsoft-authentication-library
13+
- entra
1314
extensions:
14-
- endpoint: AAD v2.0
15-
- services: ms-identity
16-
- client: Angular SPA
17-
- service: ASP.NET Core Web Api
18-
- level: 300
19-
- platform: JavaScript
15+
endpoint: AAD v2.0
16+
services: ms-identity
17+
client: Angular SPA
18+
service: ASP.NET Core Web Api
19+
level: 300
20+
platform: JavaScript
2021
urlFragment: spa-msal-angular-app-roles
2122
description: This sample demonstrates a cross-platform application suite involving an Angular single-page application (TodoListSPA) calling an ASP.NET Core web API (TodoListAPI) secured with the Microsoft identity platform. In doing so, it implements Role-based Access Control (RBAC) by using Azure AD App Roles.
2223
---

5-AccessControl/2-call-api-groups/README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ products:
1212
- msal-angular
1313
- microsoft-identity-web
1414
- microsoft-authentication-library
15+
- entra
1516
urlFragment: spa-msal-angular-security-groups
1617
extensions:
17-
- services: ms-identity
18-
- platform: javascript
19-
- endpoint: AAD v2.0
20-
- level: 300
21-
- client: Angular SPA
22-
- service: .NET Core web API
18+
services: ms-identity
19+
platform: javascript
20+
endpoint: AAD v2.0
21+
level: 300
22+
client: Angular SPA
23+
service: .NET Core web API
2324
---
2425

2526
# Angular single-page application calling a protected ASP.NET Core web API and using Security Groups to implement Role-Based Access Control

6-AdvancedScenarios/1-call-api-obo/README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ products:
1010
- msal-angular
1111
- microsoft-identity-web
1212
- microsoft-authentication-library
13+
- entra
1314
urlFragment: spa-msal-angular-graph-obo
1415
extensions:
15-
- services: ms-identity
16-
- platform: javascript
17-
- endpoint: AAD v2.0
18-
- level: 300
19-
- client: Angular SPA
20-
- service: .NET Core web API
16+
services: ms-identity
17+
platform: javascript
18+
endpoint: AAD v2.0
19+
level: 300
20+
client: Angular SPA
21+
service: .NET Core web API
2122
---
2223

2324
# An Angular single-page application calling an AspNetCore web API which calls the Microsoft Graph API using the on-behalf-of(OBO) flow

6-AdvancedScenarios/2-call-api-mt/README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ products:
1111
- msal-js
1212
- msal-angular
1313
- microsoft-authentication-library
14+
- entra
1415
urlFragment: spa-msal-angular-multi-tenant
1516
extensions:
16-
- services: ms-identity
17-
- platform: javascript
18-
- endpoint: AAD v2.0
19-
- level: 400
20-
- client: Angular SPA
21-
- service: .NET Core web API
17+
services: ms-identity
18+
platform: javascript
19+
endpoint: AAD v2.0
20+
level: 400
21+
client: Angular SPA
22+
service: .NET Core web API
2223
---
2324

2425
# Integrate an Angular SPA using MSAL Angular to authenticate users with Azure AD and call a protected web API using the multi-tenant integration pattern (SaaS)

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ products:
1515
- azure-active-directory-b2c
1616
- microsoft-identity-web
1717
- microsoft-authentication-library
18+
- entra
1819
description: "Tutorial: Enable your Angular single-page application to sign-in users and call APIs with the Microsoft identity platform"
1920
urlFragment: "ms-identity-javascript-angular-tutorial"
2021
---

0 commit comments

Comments
 (0)