diff --git a/components/Account.php b/components/Account.php index a3469055..ab1a309c 100644 --- a/components/Account.php +++ b/components/Account.php @@ -35,7 +35,7 @@ public function componentDetails() { return [ 'name' => "Account", - 'description' => "User management form." + 'description' => "User management form for updating profile and security details." ]; } diff --git a/components/Session.php b/components/Session.php index fc024873..77e7c161 100644 --- a/components/Session.php +++ b/components/Session.php @@ -34,7 +34,7 @@ public function componentDetails() { return [ 'name' => "Session", - 'description' => "Provides services for registering a user." + 'description' => "Checks the user session and includes the user object on the page." ]; } diff --git a/docs/docs-lock.json b/docs/docs-lock.json index 36915016..da34125d 100644 --- a/docs/docs-lock.json +++ b/docs/docs-lock.json @@ -18,22 +18,27 @@ "children": [ { "title": "Session", + "description": "checks the user session and includes the user object on the page", "slug": "component-session" }, { "title": "Account", + "description": "user management form for updating profile and security details", "slug": "component-account" }, { "title": "Authentication", + "description": "provides services for logging a user in", "slug": "component-authentication" }, { "title": "Registration", + "description": "provides services for registering a user", "slug": "component-registration" }, { "title": "Reset Password", + "description": "confirms and resets the user with a new password", "slug": "component-reset-password" } ] @@ -43,14 +48,17 @@ "children": [ { "title": "Auth Manager", + "description": "services for managing the user session", "slug": "auth-manager" }, { "title": "Impersonation", + "description": "extra services for impersonating users", "slug": "auth-impersonation" }, { "title": "Bearer Tokens", + "description": "extra services for JWT authentication", "slug": "auth-bearer-tokens" } ] diff --git a/docs/docs.yaml b/docs/docs.yaml index 107369ff..a11cb951 100644 --- a/docs/docs.yaml +++ b/docs/docs.yaml @@ -22,31 +22,35 @@ navigation: - title: "Session" link: "./component-session.md" - + description: "checks the user session and includes the user object on the page" - title: "Account" link: "./component-account.md" - + description: "user management form for updating profile and security details" - title: "Authentication" link: "./component-authentication.md" - + description: "provides services for logging a user in" - title: "Registration" link: "./component-registration.md" - + description: "provides services for registering a user" - title: "Reset Password" link: "./component-reset-password.md" + description: "confirms and resets the user with a new password" - title: "Services" children: - title: "Auth Manager" link: "./auth-manager.md" + description: "services for managing the user session" - title: "Impersonation" link: "./auth-impersonation.md" + description: "extra services for impersonating users" - title: "Bearer Tokens" link: "./auth-bearer-tokens.md" + description: "extra services for JWT authentication"