From ab63ebbbee4348c538fdfdae1683feb484d586ef Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Tue, 21 Sep 2021 14:37:49 -0500 Subject: [PATCH] Add link to authorization from features. --- docs/modules/ROOT/pages/features/authentication/index.adoc | 2 -- docs/modules/ROOT/pages/features/index.adoc | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/modules/ROOT/pages/features/authentication/index.adoc b/docs/modules/ROOT/pages/features/authentication/index.adoc index 991b671e92..fb4cc5cab9 100644 --- a/docs/modules/ROOT/pages/features/authentication/index.adoc +++ b/docs/modules/ROOT/pages/features/authentication/index.adoc @@ -6,8 +6,6 @@ Authentication is how we verify the identity of who is trying to access a partic A common way to authenticate users is by requiring the user to enter a username and password. Once authentication is performed we know the identity and can perform authorization. -== Authentication Support - Spring Security provides built in support for authenticating users. This section is dedicated to generic authentication support that applies in both Servlet and WebFlux environments. Refer to the sections on authentication for xref:servlet/authentication/index.adoc#servlet-authentication[Servlet] and WebFlux for details on what is supported for each stack. diff --git a/docs/modules/ROOT/pages/features/index.adoc b/docs/modules/ROOT/pages/features/index.adoc index 2e51981630..5775de1d1f 100644 --- a/docs/modules/ROOT/pages/features/index.adoc +++ b/docs/modules/ROOT/pages/features/index.adoc @@ -1,6 +1,6 @@ [[features]] = Features -Spring Security provides comprehensive support for xref:features/authentication/index.adoc#authentication[authentication], authorization, and protection against xref:features/exploits/index.adoc#exploits[common exploits]. +Spring Security provides comprehensive support for xref:features/authentication/index.adoc[authentication], xref:features/authorization/index.adoc[authorization], and protection against xref:features/exploits/index.adoc#exploits[common exploits]. It also provides integration with other libraries to simplify its usage.