From c7162bc06c4796ee510c4547ebb9ca8037803491 Mon Sep 17 00:00:00 2001 From: caspla <25846043+caspla@users.noreply.github.com> Date: Fri, 7 Mar 2025 09:08:11 +0100 Subject: [PATCH 1/2] Update configuration.md Add persistAuthorization config option --- core/configuration.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/configuration.md b/core/configuration.md index 86a0c5ec6b4..7306e18e5b6 100644 --- a/core/configuration.md +++ b/core/configuration.md @@ -567,6 +567,9 @@ return [ // If set, enables filtering. The top bar will show an edit box that you can use to filter the tagged operations that are shown. 'filter' => false, + // If set to true, it persists authorization data and it would not be lost on browser close/refresh + 'persistAuthorization' => true, + // You can use any other configuration parameters too. ], ], From d724244e586b01431c29988a26799e4fd3685b30 Mon Sep 17 00:00:00 2001 From: caspla <25846043+caspla@users.noreply.github.com> Date: Fri, 7 Mar 2025 10:43:25 +0100 Subject: [PATCH 2/2] Update configuration.md