From a4a1582c627bae2977165c941977e78fce0deddd Mon Sep 17 00:00:00 2001 From: Tim Swagger Date: Mon, 28 Aug 2023 09:24:20 -0500 Subject: [PATCH] Update docs/guides/api_hmac_keys.md Co-authored-by: Pooya Parsa --- docs/guides/api_hmac_keys.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/api_hmac_keys.md b/docs/guides/api_hmac_keys.md index 278217b6b..df517c2d2 100644 --- a/docs/guides/api_hmac_keys.md +++ b/docs/guides/api_hmac_keys.md @@ -98,7 +98,7 @@ public $filters = [ You can also specify the filter should run on one or more routes within the routes file itself: ```php -$routes->group('api', ['filter' => 'tokens'], function($routes) { +$routes->group('api', ['filter' => 'hmac'], function($routes) { // }); $routes->get('users', 'UserController::list', ['filter' => 'hmac:users-read']);