From ee42db9e6a2b49e5cb508e8246a1b53f7b047544 Mon Sep 17 00:00:00 2001 From: kenjis Date: Thu, 8 Aug 2024 09:20:52 +0900 Subject: [PATCH] docs: fix typo in filter name --- docs/references/controller_filters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/references/controller_filters.md b/docs/references/controller_filters.md index 5e9652ea4..925b6d20d 100644 --- a/docs/references/controller_filters.md +++ b/docs/references/controller_filters.md @@ -29,7 +29,7 @@ $aliases = [ |-------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | session | Restricts access to users who are not authenticated by the `Session` authenticator. | | tokens | Restricts access to users who are not authenticated by the `AccessTokens` authenticator. | -| chained | The filter will check authenticators in sequence to see if the user is logged in through either of authenticators, allowing a single API endpoint to work for both an SPA using session auth, and a mobile app using access tokens. | +| chain | The filter will check authenticators in sequence to see if the user is logged in through either of authenticators, allowing a single API endpoint to work for both an SPA using session auth, and a mobile app using access tokens. | | jwt | Restricts access to users who are not authenticated by the `JWT` authenticator. See [JWT Authentication](../addons/jwt.md). | | hmac | Restricts access to users who are not authenticated by the `HMAC` authenticator. See [HMAC Authentication](../guides/api_hmac_keys.md). | | auth-rates | Provides a good basis for rate limiting of auth-related routes. |