X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d798cc3bf7852aac127fb04d9338fe50d05ab051..4709d90594c3cc35b4bb4f8db259abf9f89c2fe6:/app/controllers/message_controller.rb diff --git a/app/controllers/message_controller.rb b/app/controllers/message_controller.rb index 0ec1c8eb6..f4c465c93 100644 --- a/app/controllers/message_controller.rb +++ b/app/controllers/message_controller.rb @@ -13,7 +13,7 @@ class MessageController < ApplicationController # clicks send. # The display_name param is the display name of the user that the message is being sent to. def new - if params[:message] + if request.post? if @user.sent_messages.where("sent_on >= ?", Time.now.getutc - 1.hour).count >= MAX_MESSAGES_PER_HOUR flash[:error] = t "message.new.limit_exceeded" else @@ -28,10 +28,10 @@ class MessageController < ApplicationController redirect_to :action => "inbox", :display_name => @user.display_name end end + else + @message ||= Message.new(message_params.merge(:recipient => @this_user)) + @title = t "message.new.title" end - - @message ||= Message.new(:recipient => @this_user) - @title = t "message.new.title" end # Allow the user to reply to another message. @@ -139,5 +139,7 @@ class MessageController < ApplicationController # return permitted message parameters def message_params params.require(:message).permit(:title, :body) + rescue ActionController::ParameterMissing + ActionController::Parameters.new.permit(:title, :body) end end