]> git.openstreetmap.org Git - rails.git/commitdiff
Add missing callbacks to session controller
authorTom Hughes <tom@compton.nu>
Mon, 29 Mar 2021 19:31:24 +0000 (20:31 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 29 Mar 2021 19:36:07 +0000 (20:36 +0100)
app/controllers/sessions_controller.rb

index 13047167075245b17ee6f09353a14c81d9ef5464..7e6a740f3e1a1e86ef4d4d4be5e6936959086084 100644 (file)
@@ -4,6 +4,9 @@ class SessionsController < ApplicationController
   layout "site"
 
   before_action :disable_terms_redirect, :only => [:destroy]
+  before_action :authorize_web
+  before_action :set_locale
+  before_action :check_database_readable
   before_action :require_cookies, :only => [:new]
 
   authorize_resource :class => false