Skip to content

Commit 78a2b15

Browse files
committed
Update docs
1 parent 3d6d059 commit 78a2b15

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

components/Account.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function componentDetails()
3535
{
3636
return [
3737
'name' => "Account",
38-
'description' => "User management form."
38+
'description' => "User management form for updating profile and security details."
3939
];
4040
}
4141

components/Session.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function componentDetails()
3434
{
3535
return [
3636
'name' => "Session",
37-
'description' => "Provides services for registering a user."
37+
'description' => "Checks the user session and includes the user object on the page."
3838
];
3939
}
4040

docs/docs-lock.json

+8
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,27 @@
1818
"children": [
1919
{
2020
"title": "Session",
21+
"description": "checks the user session and includes the user object on the page",
2122
"slug": "component-session"
2223
},
2324
{
2425
"title": "Account",
26+
"description": "user management form for updating profile and security details",
2527
"slug": "component-account"
2628
},
2729
{
2830
"title": "Authentication",
31+
"description": "provides services for logging a user in",
2932
"slug": "component-authentication"
3033
},
3134
{
3235
"title": "Registration",
36+
"description": "provides services for registering a user",
3337
"slug": "component-registration"
3438
},
3539
{
3640
"title": "Reset Password",
41+
"description": "confirms and resets the user with a new password",
3742
"slug": "component-reset-password"
3843
}
3944
]
@@ -43,14 +48,17 @@
4348
"children": [
4449
{
4550
"title": "Auth Manager",
51+
"description": "services for managing the user session",
4652
"slug": "auth-manager"
4753
},
4854
{
4955
"title": "Impersonation",
56+
"description": "extra services for impersonating users",
5057
"slug": "auth-impersonation"
5158
},
5259
{
5360
"title": "Bearer Tokens",
61+
"description": "extra services for JWT authentication",
5462
"slug": "auth-bearer-tokens"
5563
}
5664
]

docs/docs.yaml

+8-4
Original file line numberDiff line numberDiff line change
@@ -22,31 +22,35 @@ navigation:
2222
-
2323
title: "Session"
2424
link: "./component-session.md"
25-
25+
description: "checks the user session and includes the user object on the page"
2626
-
2727
title: "Account"
2828
link: "./component-account.md"
29-
29+
description: "user management form for updating profile and security details"
3030
-
3131
title: "Authentication"
3232
link: "./component-authentication.md"
33-
33+
description: "provides services for logging a user in"
3434
-
3535
title: "Registration"
3636
link: "./component-registration.md"
37-
37+
description: "provides services for registering a user"
3838
-
3939
title: "Reset Password"
4040
link: "./component-reset-password.md"
41+
description: "confirms and resets the user with a new password"
4142
-
4243
title: "Services"
4344
children:
4445
-
4546
title: "Auth Manager"
4647
link: "./auth-manager.md"
48+
description: "services for managing the user session"
4749
-
4850
title: "Impersonation"
4951
link: "./auth-impersonation.md"
52+
description: "extra services for impersonating users"
5053
-
5154
title: "Bearer Tokens"
5255
link: "./auth-bearer-tokens.md"
56+
description: "extra services for JWT authentication"

0 commit comments

Comments
 (0)