Ensure database is writable before destroying a message
This commit is contained in:
parent
4ec70f7994
commit
84fa437d50
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue