]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/message_controller.rb
Use Faraday in place of Net::HTTP so we can mock responses
[rails.git] / app / controllers / message_controller.rb
index 32f2f8780c3a28be99ab108ce7d522cc7494ed4b..a22802e63accdbe85531db1d740ba87df6a683f4 100644 (file)
@@ -1,12 +1,12 @@
 class MessageController < ApplicationController
   layout "site"
 
-  before_filter :authorize_web
-  before_filter :set_locale
-  before_filter :require_user
-  before_filter :lookup_this_user, :only => [:new]
-  before_filter :check_database_readable
-  before_filter :check_database_writable, :only => [:new, :reply, :mark]
+  before_action :authorize_web
+  before_action :set_locale
+  before_action :require_user
+  before_action :lookup_this_user, :only => [:new]
+  before_action :check_database_readable
+  before_action :check_database_writable, :only => [:new, :reply, :mark]
 
   # Allow the user to write a new message to another user. This action also
   # deals with the sending of that message to the other user when the user