From 84fa437d509002c783af33d219bed0c2115786df Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Tue, 15 May 2018 18:28:33 +0800 Subject: [PATCH] Ensure database is writable before destroying a message --- app/controllers/messages_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/messages_controller.rb b/app/controllers/messages_controller.rb index e59642fc7..99884295b 100644 --- a/app/controllers/messages_controller.rb +++ b/app/controllers/messages_controller.rb @@ -6,7 +6,7 @@ class MessagesController < ApplicationController before_action :require_user before_action :lookup_user, :only => [:new] before_action :check_database_readable - before_action :check_database_writable, :only => [:new, :reply, :mark] + before_action :check_database_writable, :only => [:new, :reply, :mark, :destroy] before_action :allow_thirdparty_images, :only => [:new, :show] # Allow the user to write a new message to another user. This action also -- 2.43.2