]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/users_controller.rb
Refactoring
[rails.git] / app / controllers / users_controller.rb
index 91742c7613aec51dc4d14ed6cf163b1ca82341c2..9b97fa0a1f08af46d9d5657c12c75ad070acc052 100644 (file)
@@ -5,11 +5,11 @@ class UsersController < ApplicationController
   before_action :disable_terms_redirect, :only => [:terms, :save, :logout]
   before_action :authorize_web
   before_action :set_locale
+  before_action :check_database_readable
 
   authorize_resource
 
   before_action :require_self, :only => [:account]
-  before_action :check_database_readable, :except => [:login]
   before_action :check_database_writable, :only => [:new, :account, :confirm, :confirm_email, :lost_password, :reset_password, :go_public, :make_friend, :remove_friend]
   before_action :require_cookies, :only => [:new, :login, :confirm]
   before_action :lookup_user_by_name, :only => [:set_status, :delete]