]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/application_controller.rb
Mark all methods in api_controller and application_controller as private
[rails.git] / app / controllers / application_controller.rb
index c5545c06871ffe964c00523c535f2d30b7859697..8ccd7706018f8fca2fe2e0f1d2f7958e95f5246c 100644 (file)
@@ -12,6 +12,8 @@ class ApplicationController < ActionController::Base
   attr_accessor :current_user
   helper_method :current_user
 
+  private
+
   def authorize_web
     if session[:user]
       self.current_user = User.where(:id => session[:user]).where("status IN ('active', 'confirmed', 'suspended')").first
@@ -402,8 +404,6 @@ class ApplicationController < ActionController::Base
     end
   end
 
-  private
-
   # extract authorisation credentials from headers, returns user = nil if none
   def get_auth_data
     if request.env.key? "X-HTTP_AUTHORIZATION" # where mod_rewrite might have put it