mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
FIX: Respect the acting_user
attribute on the PostValidator
This commit is contained in:
parent
64094954bc
commit
960620d91b
1 changed files with 1 additions and 0 deletions
|
@ -82,6 +82,7 @@ class NewPostManager
|
||||||
|
|
||||||
validator = Validators::PostValidator.new
|
validator = Validators::PostValidator.new
|
||||||
post = Post.new(raw: manager.args[:raw])
|
post = Post.new(raw: manager.args[:raw])
|
||||||
|
post.user = manager.user
|
||||||
validator.validate(post)
|
validator.validate(post)
|
||||||
if post.errors[:raw].present?
|
if post.errors[:raw].present?
|
||||||
result = NewPostResult.new(:created_post, false)
|
result = NewPostResult.new(:created_post, false)
|
||||||
|
|
Loading…
Reference in a new issue