Skip to content

Commit

Permalink
Merge pull request #1155 from kenjis/fix-docs-filter-chain
Browse files Browse the repository at this point in the history
docs: fix filter name for `ChainAuth`
  • Loading branch information
datamweb authored Aug 8, 2024
2 parents 7a118f3 + ee42db9 commit 1034d55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/references/controller_filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down

0 comments on commit 1034d55

Please sign in to comment.