fixes #2461: Mod queue comments

This commit is contained in:
r888888888
2015-08-05 13:04:46 -07:00
parent dedca83e7f
commit f66d5c3f02
12 changed files with 125 additions and 16 deletions

View File

@@ -5,7 +5,7 @@ module Moderator
def create
@post = ::Post.find(params[:post_id])
@post_disapproval = PostDisapproval.create(:post => @post, :user => CurrentUser.user, :reason => params[:reason] || "disinterest")
@post_disapproval = PostDisapproval.create(:post => @post, :user => CurrentUser.user, :reason => params[:reason] || "disinterest", :message => params[:message])
end
end
end