From 97c3f7704cde3d9cc1fa66283683c31017f7d54e Mon Sep 17 00:00:00 2001 From: kenjis Date: Sun, 29 Oct 2023 10:17:42 +0900 Subject: [PATCH] docs: add "valid" Because controller filters are applied before controller execution. If there is no controller found, the filters are not applied. --- user_guide_src/source/incoming/filters.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/user_guide_src/source/incoming/filters.rst b/user_guide_src/source/incoming/filters.rst index f6fea6551c37..29462ccc6538 100644 --- a/user_guide_src/source/incoming/filters.rst +++ b/user_guide_src/source/incoming/filters.rst @@ -119,7 +119,8 @@ You should define as many aliases as you need. $globals ======== -The second section allows you to define any filters that should be applied to every request made by the framework. +The second section allows you to define any filters that should be applied to every valid request made by the framework. + You should take care with how many you use here, since it could have performance implications to have too many run on every request.