Skip to content

Commit 12b6d8d

Browse files
authored
Merge pull request #211830 from MicrosoftDocs/main
Publish
2 parents faa5edb + 0f5f119 commit 12b6d8d

File tree

332 files changed

+4477
-1010
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

332 files changed

+4477
-1010
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Thank you for taking the time to contribute to the Microsoft Azure documentation.
44

5-
This guide covers some general topics related to contribution and refers to our [contributor guide](https://docs.microsoft.com/contribute) for more detailed explanations when required.
5+
This guide covers some general topics related to contribution and refers to our [contributor guide](https://learn.microsoft.com/contribute) for more detailed explanations when required.
66

77
## Code of Conduct
88

@@ -22,9 +22,8 @@ Please use the Feedback tool at the bottom of any article to submit bugs and sug
2222

2323
### Editing in GitHub
2424

25-
Follow the guidance for [Quick edits to existing documents](https://docs.microsoft.com/contribute/#quick-edits-to-documentation) in our contributor guide.
25+
Follow the guidance for [Quick edits to existing documents](https://learn.microsoft.com/contribute/#quick-edits-to-documentation) in our contributor guide.
2626

2727
### Pull requests
2828

29-
Review the guidance for [pull requests](https://docs.microsoft.com/contribute/how-to-write-workflows-major#pull-request-processing) and the contribution workflow in our contributor guide.
30-
29+
Review the guidance for [pull requests](https://learn.microsoft.com/contribute/how-to-write-workflows-major#pull-request-processing) and the contribution workflow in our contributor guide.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ You've decided to contribute, that's great! To contribute to the documentation,
1212

1313
#### Github
1414

15-
Contributing to the documentation requires a GitHub account. If you don't have an account, follow the instructions for [GitHub account setup](https://docs.microsoft.com/contribute/get-started-setup-github) from our contributor guide.
15+
Contributing to the documentation requires a GitHub account. If you don't have an account, follow the instructions for [GitHub account setup](https://learn.microsoft.com/contribute/get-started-setup-github) from our contributor guide.
1616

1717
#### Tools
1818

19-
To install necessary tools, follow the instructions for [Install content authoring tools](https://docs.microsoft.com/contribute/get-started-setup-tools) from our contributor guide.
19+
To install necessary tools, follow the instructions for [Install content authoring tools](https://learn.microsoft.com/contribute/get-started-setup-tools) from our contributor guide.
2020

2121
## License
2222

articles/active-directory-b2c/enable-authentication-python-web-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ Add the following templates under the templates folder. These templates extend t
241241
242242
{% block metadata %}
243243
{% if config.get("B2C_RESET_PASSWORD_AUTHORITY") and "AADB2C90118" in result.get("error_description") %}
244-
<!-- See also https://docs.microsoft.com/en-us/azure/active-directory-b2c/active-directory-b2c-reference-policies#linking-user-flows -->
244+
<!-- See also https://learn.microsoft.com/azure/active-directory-b2c/active-directory-b2c-reference-policies#linking-user-flows -->
245245
<meta http-equiv="refresh"
246246
content='0;{{_build_auth_code_flow(authority=config["B2C_RESET_PASSWORD_AUTHORITY"])["auth_uri"]}}'>
247247
{% endif %}

articles/active-directory-b2c/enable-authentication-spa-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ To sign in the user, do the following:
243243
/**
244244
* For the purpose of setting an active account for UI update, we want to consider only the auth response resulting
245245
* from SUSI flow. "tfp" claim in the id token tells us the policy (NOTE: legacy policies may use "acr" instead of "tfp").
246-
* To learn more about B2C tokens, visit https://docs.microsoft.com/en-us/azure/active-directory-b2c/tokens-overview
246+
* To learn more about B2C tokens, visit https://learn.microsoft.com/azure/active-directory-b2c/tokens-overview
247247
*/
248248
if (response.idTokenClaims['tfp'].toUpperCase() === b2cPolicies.names.signUpSignIn.toUpperCase()) {
249249
handleResponse(response);

articles/active-directory-b2c/enable-authentication-web-app-with-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public void ConfigureServices(IServiceCollection services)
8484
// This lambda determines whether user consent for non-essential cookies is needed for a given request.
8585
options.CheckConsentNeeded = context => true;
8686
options.MinimumSameSitePolicy = SameSiteMode.Unspecified;
87-
// Handling SameSite cookie according to https://docs.microsoft.com/en-us/aspnet/core/security/samesite?view=aspnetcore-3.1
87+
// Handling SameSite cookie according to https://learn.microsoft.com/aspnet/core/security/samesite?view=aspnetcore-3.1
8888
options.HandleSameSiteCookieCompatibility();
8989
});
9090

articles/active-directory-b2c/enable-authentication-web-application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public void ConfigureServices(IServiceCollection services)
8484
// This lambda determines whether user consent for non-essential cookies is needed for a given request.
8585
options.CheckConsentNeeded = context => true;
8686
options.MinimumSameSitePolicy = SameSiteMode.Unspecified;
87-
// Handling SameSite cookie according to https://docs.microsoft.com/en-us/aspnet/core/security/samesite?view=aspnetcore-3.1
87+
// Handling SameSite cookie according to https://learn.microsoft.com/aspnet/core/security/samesite?view=aspnetcore-3.1
8888
options.HandleSameSiteCookieCompatibility();
8989
});
9090

articles/active-directory-b2c/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ landingContent:
5151
- text: Authentication library
5252
url: ../active-directory/develop/msal-overview.md?bc=/azure/active-directory-b2c/bread/toc.json&toc=/azure/active-directory-b2c/TOC.json
5353
- text: 'Build a web site: HTML, CSS, JavaScript'
54-
url: /learn/modules/build-simple-website/
54+
url: /training/modules/build-simple-website/
5555

5656
# Card
5757
- title: Common use cases

articles/active-directory-b2c/javascript-and-page-layout.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ function addTermsOfUseLink() {
220220
var termsLabelText = termsOfUseLabel.innerHTML;
221221

222222
// create a new <a> element with the same inner text
223-
var termsOfUseUrl = 'https://docs.microsoft.com/legal/termsofuse';
223+
var termsOfUseUrl = 'https://learn.microsoft.com/legal/termsofuse';
224224
var termsOfUseLink = document.createElement('a');
225225
termsOfUseLink.setAttribute('href', termsOfUseUrl);
226226
termsOfUseLink.setAttribute('target', '_blank');

articles/active-directory-b2c/view-audit-logs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ You can try this script in the [Azure Cloud Shell](overview.md). Be sure to upda
110110

111111
```powershell
112112
# This script requires an application registration that's granted Microsoft Graph API permission
113-
# https://docs.microsoft.com/azure/active-directory-b2c/microsoft-graph-get-started
113+
# https://learn.microsoft.com/azure/active-directory-b2c/microsoft-graph-get-started
114114
115115
# Constants
116116
$ClientID = "your-client-application-id-here" # Insert your application's client ID, a GUID
@@ -219,4 +219,4 @@ Here's the JSON representation of the example activity event shown earlier in th
219219

220220
## Next steps
221221

222-
You can automate other administration tasks, for example, [manage Azure AD B2C user accounts with Microsoft Graph](microsoft-graph-operations.md).
222+
You can automate other administration tasks, for example, [manage Azure AD B2C user accounts with Microsoft Graph](microsoft-graph-operations.md).

articles/active-directory/develop/migrate-python-adal-msal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ def get_preexisting_rt_and_their_scopes_from_elsewhere():
8989
# https://github.com/AzureAD/azure-activedirectory-library-for-python/blob/1.2.3/sample/device_code_sample.py#L72
9090
# which uses a resource rather than a scope,
9191
# you need to convert your v1 resource into v2 scopes
92-
# See https://docs.microsoft.com/azure/active-directory/azuread-dev/azure-ad-endpoint-comparison#scopes-not-resources
92+
# See https://learn.microsoft.com/azure/active-directory/azuread-dev/azure-ad-endpoint-comparison#scopes-not-resources
9393
# You may be able to append "/.default" to your v1 resource to form a scope
94-
# See https://docs.microsoft.com/azure/active-directory/develop/v2-permissions-and-consent#the-default-scope
94+
# See https://learn.microsoft.com/azure/active-directory/develop/v2-permissions-and-consent#the-default-scope
9595

9696
# Or maybe you have an app already talking to the Microsoft identity platform,
9797
# powered by some 3rd-party auth library, and persist its tokens somehow.

0 commit comments

Comments
 (0)