FIX: Respect the acting_user attribute on the PostValidator

This commit is contained in:
Robin Ward 2016-09-16 13:15:01 -04:00
parent 64094954bc
commit 960620d91b

View File

@ -82,6 +82,7 @@ class NewPostManager
validator = Validators::PostValidator.new
post = Post.new(raw: manager.args[:raw])
post.user = manager.user
validator.validate(post)
if post.errors[:raw].present?
result = NewPostResult.new(:created_post, false)