From 5c6b91ef772722a57ba6e0bfd347da2c35103efe Mon Sep 17 00:00:00 2001 From: "Stanko K.R." Date: Thu, 13 Nov 2025 12:14:34 +0100 Subject: [PATCH] Fix incorrect var setting --- app/controllers/concerns/authentication.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/concerns/authentication.rb b/app/controllers/concerns/authentication.rb index 53bb79564..f99af0083 100644 --- a/app/controllers/concerns/authentication.rb +++ b/app/controllers/concerns/authentication.rb @@ -18,9 +18,9 @@ module Authentication end def allow_unauthenticated_access(**options) - @unauthenticated_access_allowed = true skip_before_action :require_authentication, **options before_action :resume_session, **options + allow_unauthorized_access **options end def disallow_account_scope(**options)