From 4709d90594c3cc35b4bb4f8db259abf9f89c2fe6 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 9 Feb 2017 19:37:48 +0000 Subject: [PATCH] Only send messages for POST requests --- app/controllers/message_controller.rb | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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 -- 2.43.2