From f9e100b85fc17f57ce0617c69cc636751dcbafa4 Mon Sep 17 00:00:00 2001 From: sto Date: Thu, 6 Aug 2026 11:41:44 +0200 Subject: [PATCH] Log in should redirect to /events --- 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 972cbba..df0faaf 100644 --- a/app/controllers/concerns/authentication.rb +++ b/app/controllers/concerns/authentication.rb @@ -35,7 +35,7 @@ module Authentication end def after_authentication_url - session.delete(:return_to_after_authenticating) || "/contests" + session.delete(:return_to_after_authenticating) || "/events" end def start_new_session_for(user)