From 0c35617343964ad97d3ee21faf5ff5e5b1088e94 Mon Sep 17 00:00:00 2001 From: Marius Peter Date: Mon, 30 Dec 2024 20:00:14 +0100 Subject: Added cookies banner. --- app/controllers/sessions_controller.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'app/controllers') diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb index 9785c92..fad2c4b 100644 --- a/app/controllers/sessions_controller.rb +++ b/app/controllers/sessions_controller.rb @@ -1,5 +1,5 @@ class SessionsController < ApplicationController - allow_unauthenticated_access only: %i[ new create ] + allow_unauthenticated_access only: %i[ new create dismiss_banner ] rate_limit to: 10, within: 3.minutes, only: :create, with: -> { redirect_to new_session_url, alert: "Try again later." } def new @@ -18,4 +18,9 @@ class SessionsController < ApplicationController terminate_session redirect_to new_session_path end + + def dismiss_banner + session[:dismissed_banner] = true + redirect_to root_path + end end -- cgit v1.2.3