Commit Graph

574 Commits (5a827d6d4f7cf8bd579c8e13c1cdfeef03f0618c)

Author SHA1 Message Date
sbrian26 250f70e622 Added OSS provider Gluu.org (Gluu Server) (#6680) 2018-05-30 10:36:57 -05:00
Luke Latham a5928a33e1 Cross-link RP filtering to RP conventions (#6646)
Update
2018-05-29 15:47:01 -10:00
Rick Anderson 453e1775f3
Update cross-site-scripting.md (#6663) 2018-05-29 10:23:10 -10:00
user135711 739120a827 typo (#6631) 2018-05-27 09:07:49 -05:00
Tom Austin f1cb1666d0 Added missing AllowAnonymous to ForgotPassword and ForgotPasswordConfirmation. Previously it was impossible to navigate to these pages unless logged in which makes no sense if you are trying to reset your password. (#6614) 2018-05-26 10:07:55 -10:00
Luke Latham 828a9d8e77
Protect DP keys with Key Vault (#6483) 2018-05-25 09:48:32 -05:00
Scott Addie 5ffd62e9c6
Clarify SDK version containing Secret Manager tool (#6564)
Fixes https://github.com/aspnet/Docs/issues/6523

**Changes**
- Display the **Install the Secret Manager tool** section for all versions of ASP.NET Core, since it's not safe to assume the .NET Core SDK version being used.
- Include the specific SDK version number which includes the Secret Manager tool
- Add note about tool warning

[Internal Review Page](https://review.docs.microsoft.com/en-us/aspnet/core/security/app-secrets?branch=pr-en-us-6564&view=aspnetcore-2.0&tabs=windows#install-the-secret-manager-tool)
2018-05-24 08:48:19 -05:00
Rick Anderson 7807a513bc
Update gdpr.md (#6558) 2018-05-23 10:37:16 -10:00
Rick Anderson 26c7934e67
New doc: GDPR support in ASP.NET Core (#6516)
* GDPR templates

* work

* work

* work

* work

* work

* work

* react to feedback

* react to feedback

* react to feedback
2018-05-22 17:09:19 -10:00
Luke Latham b9c408f82a App secrets update (#6528)
Fixes #6523

[Internal Review Topic](https://review.docs.microsoft.com/en-us/aspnet/core/security/app-secrets?view=aspnetcore-1.0&branch=pr-en-us-6528)

Tiny nits in the app secrets update: "or later" and a couple of comma splices.

What I wrote for another version of this was more explicit. I'm concerned that the current version doesn't tell devs exactly why/how `AddUserSecrets` is added, and it doesn't say that if `CreateDefaultBuilder` isn't used that they'll still need to do it manually.

Starting with ...

> \- Add the user secrets configuration source to the `Startup` constructor:

> Add the user secrets configuration source with a call to \[AddUserSecrets](/dotnet/api/microsoft.extensions.configuration.usersecretsconfigurationextensions.addusersecrets) in the `Startup` constructor:
>
> \[!code-csharp\[](app-secrets/samples/1.1/UserSecrets/Startup.cs?name=snippet_StartupConstructor&highlight=5-8)]
> ::: moniker-end
> ::: moniker range=">= aspnetcore-2.0"
> When a project calls \[CreateDefaultBuilder](/dotnet/api/microsoft.aspnetcore.webhost.createdefaultbuilder) to initialize a new instance of the host with preconfigured defaults, \[AddUserSecrets](/dotnet/api/microsoft.extensions.configuration.usersecretsconfigurationextensions.addusersecrets) is called when the \[EnvironmentName](/dotnet/api/microsoft.aspnetcore.hosting.ihostingenvironment.environmentname) is \[Development](/dotnet/api/microsoft.aspnetcore.hosting.environmentname.development):
>
> \[!code-csharp\[](app-secrets/samples/2.1/UserSecrets/Program.cs?name=snippet_CreateWebHostBuilder&highlight=2)]
>
> When `CreateDefaultBuilder` isn't called during host construction, add the user secrets configuration source with a call to \[AddUserSecrets](/dotnet/api/microsoft.extensions.configuration.usersecretsconfigurationextensions.addusersecrets) in the `Startup` constructor:
>
> \[!code-csharp\[](app-secrets/samples/1.1/UserSecrets/Startup.cs?name=snippet_StartupConstructor&highlight=5-8)]
> ::: moniker-end

Snippet the call to `CreateDefaultBuilder` to show it (line 2 is highlighted) ...

```csharp
#region snippet_CreateWebHostBuilder
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
    WebHost.CreateDefaultBuilder(args)
        .UseStartup<Startup>();
#endregion
```

... and the sample naming issue remains ("1.1" and "2.1" instead of "1.x" and "2.x").

If anything here looks good, I can mod this branch to make additional updates. Otherwise, nevermind. Just spit-ball'in here.
2018-05-22 13:43:02 -05:00
Luke Latham f01da69c80
Add extension overload note to change the display name (#6504) 2018-05-21 14:36:42 -05:00
Scott Addie 8594f2be8e Add note about AddUserSecrets in 2.x 2018-05-18 15:01:17 -05:00
Michael DePouw 4c8ea3b7e4 Add reference to RequireAssertion() (#6473) 2018-05-18 09:57:26 -05:00
Scott Addie 979a70c830
Add OS tabs to user secrets doc (#6460)
* Add OS tabs to user secrets doc

* Add commas

* Indent tabbed content

* Add line breaks
2018-05-17 11:21:33 -05:00
Rick Anderson 9bd16dc3d7
Update scaffold-identity.md (#6454)
* Update scaffold-identity.md

* Update scaffold-identity.md

* Update scaffold-identity.md
2018-05-16 15:39:48 -10:00
Scott Addie 8d6d49eb3b Update user secrets doc to 2.x (#6373)
* Update user secrets doc to 2.x

* Introduce another section for adding secrets

* More changes

* More changes

* Add CLI output

* Document more CLI command options

* Add installation note about .NET Core SDK 2.1

* More changes

* Indent code snippets within tabs

* Dedent code snippets

* Add code sample for AddEnvironmentVariables

* Fix code import

* Move text

* Improve examples

* Consolidate csproj files

* Add string replacement section

* Fix code snippet types

* Minor tweaks

* More changes

* Swap ordering of sections

* Move help command out of tabs

* Simplify installation instructions

* Indent command

* Simplification

* More simplification

* React to feedback
2018-05-16 13:33:38 -10:00
Rick Anderson 9b7a1fa89f
Update scaffold-identity.md (#6450) 2018-05-16 13:25:54 -10:00
Rick Anderson 06ef373551
Identity Scaffolder (#6201)
* Identity Scaffolder

* work

* work

* work

* work

* work

* work

* work

* work

* work

* work

* work

* work

* work

* work

* work

* work
2018-05-16 13:12:09 -10:00
Rick Anderson 059bbc60f7
replace tdykstra with rick-anderson (#6395) 2018-05-12 13:55:26 -10:00
Rick Anderson 7a2b517b72
Update preview to RC1 (#6375)
* remove preview

* rc
2018-05-11 14:03:53 -10:00
Luke Latham 49e38929e5
Revert tab controls (#6350) 2018-05-10 19:58:40 -05:00
Rick Anderson dd0081eab2
Secure user data sample help (#6289) 2018-05-08 16:40:58 -10:00
Rick Anderson 1ab1a48874
remove not for production (#6256)
* remove not for production

* 2.1 preview notice removal patch (#6258)
2018-05-07 12:35:47 -10:00
Mike Rousos 8609b22061 IAuthorizationPolicyProvider documentation (#6185)
* Initial IAuthorizationPolicyProvider documentation

* Fix links to use xref pattern

* Adjust some phrasing to use more second-person perspective, more active voice, and less future tense

(as suggested by https://github.com/dotnet/docs/blob/master/styleguide/voice-tone.md)

* A few more readability/style tweaks

* Update iauthorizationpolicyprovider.md

* Update iauthorizationpolicyprovider.md

* A few tweaks based on PR feedback

* Readability improvements based on PR feedback

* Include external policy providers as a reason for using `IAuthorizatonPolicyProvider`
2018-05-07 10:09:51 -10:00
Luke Latham cfff3e1a30 Broken CoreCompat API links (#6209)
* Revert CoreCompat API links

* Fix double backticks
2018-05-07 08:53:22 -10:00
Rick Anderson 2e955bc7fa
Update facebook-logins.md (#6232)
* Update facebook-logins.md

* Update facebook-logins.md
2018-05-07 07:53:29 -10:00
Rick Anderson ff14d2c4fd
Update enforcing-ssl.md (#6223) 2018-05-04 14:34:43 -10:00
Luke Latham 38b81dce7f Remove double backticks (#6215) 2018-05-04 11:59:25 -05:00
Luke Latham f01c69f86b TOC and topic renaming with "feature" removals (#6194)
* TOC and topic renaming work

* Updates

* TOC and topic renaming work

Updates

* Updates
2018-05-03 14:38:00 -05:00
Rick Anderson dfa4036066 Apply moniker to 2fa (#6190) 2018-05-03 09:37:00 -05:00
Austin Drenski ae196b13b4 Inconsistent capitalization typo (#6191) 2018-05-03 08:51:55 -05:00
Luke Latham 7048bb8fbf API link updates (#6149)
* API link updates

Updates

One more!

Fix bookmark

Mo updates

More updates

Updates

Updates

* Update action-return-types.md

* Update index.md

* Update concurrency.md

* Update intro.md

* Update localization.md

* Update search.md
2018-05-02 14:45:06 -05:00
Luke Latham 5b35cc59de Sample lib assets (#6178) 2018-05-02 08:37:22 -10:00
Scott Addie adc128a463
Merge pull request #5974 from aspnet/Rick-Anderson-patch-3
Update overview.md
2018-04-13 16:52:27 -05:00
Scott Addie 0a03b7d225
Verbiage tweaks 2018-04-13 16:47:46 -05:00
Rick Anderson 15eae12a78
HSTS and UseHttpsRedirection (#5902)
* WIP: HSTS and UseHttpsRedirection

* work

* work

* work

* work

* work

* work

* work

* work
2018-04-13 11:13:23 -10:00
Rick Anderson b51c3ca307
Update overview.md 2018-04-13 10:22:05 -10:00
Rick Anderson 3c2f57695f
Update overview.md 2018-04-13 10:17:11 -10:00
Scott Addie a552d51964 Data protection permissions warning patch 2018-04-13 14:30:58 -05:00
Barry Dorrans dec0d8e3e4
Add permissions warning
As discussed.
2018-04-13 11:20:13 -07:00
Rick Anderson f6c5a25695
authorization requires an authentication mechanism (#5901)
* Update introduction.md

* Update introduction.md

* Update introduction.md

* Update introduction.md

* Update introduction.md
2018-04-10 11:57:51 -10:00
Rick Anderson 1832723bd1
CI Update (#5878) 2018-04-04 13:51:35 -10:00
Luke Latham e2a9bbe444
Antiforgery requests topic update (#5762) 2018-03-30 19:23:10 -07:00
Jakub Gutkowski d069d5df54 Update azure-ad-b2c-webapi.md (#5785)
* Update azure-ad-b2c-webapi.md

Adding information about **Scope** url - how it is constructed. as this *api* part was causing a lot of issues in our dev team.

* Update azure-ad-b2c-webapi.md

removing unnecessary comas.

* Minor tweaks

* More verbiage changes

* Truncate wording

* Add missing word
2018-03-23 10:01:00 -05:00
Rick Anderson 358fdc6790
Merge branch 'live' into master 2018-03-21 14:21:36 -10:00
Luke Latham bdb6d7cafc Title, description, and H1 updates (4) (#5745)
* Title, description, and H1 updates (4)

* Updates

* Updates

* Drop gerunds and update link text

* Update

* Update next.md

* Update routing.md
2018-03-21 14:18:35 -10:00
Scott Addie a7fcd3725f
Update live with current master (#5758)
* Include file for ASP.NET Core 2.1 (#5702)

* Create 2.1.md

* Update 2.1.md

* Title, description, and H1 updates (3) (#5717)

* Refactor stdout logging warning (#5724)

* Add link to App Service troubleshooting topic (#5722)

* Prereqs tuneup (#5721)

Updates

* Updated http-cookies.md (#5744)

fixed inclues => includes

* changed image to vertical orientation for readability (#5747)

* Get CDN content links on HTTPS protocol (#5736)

* Update cookie sharing topic (#5723)

* Fixed type (#5748)

* Update highlight on dependency-injection.md (#5749)

Currently the highlight is mapping the operation of GetAveragePriority on the incorrect line:

[Statistics_Service.png](https://postimg.org/image/5m0gjw6bf/)

The correction is to highlight the previous line.

* Web API persistent DB (#5741)

* Update next.md

* Minor edits

* Replace gerund in doc title

* Update TodoController2.cs (#5755)

* Describe culture fallback (#5756)

* Describe culture fallback

* Culture fallback patch (#5757)
2018-03-20 21:25:09 -05:00
Luke Latham 93efce8003
Update cookie sharing topic (#5723) 2018-03-20 11:50:36 -07:00
Luke Latham e90ee95e78 Prereqs tuneup (#5721)
Updates
2018-03-19 18:04:00 -10:00
Luke Latham f7e92a3e67 Title, description, and H1 updates (3) (#5717) 2018-03-19 13:40:34 -10:00