discourse/plugins/poll/lib/post_validator.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
554 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module DiscoursePoll
class PostValidator
def initialize(post)
@post = post
end
def validate_post
if (
@post.acting_user &&
(
@post.acting_user.staff? ||
@post.acting_user.in_any_groups?(SiteSetting.poll_create_allowed_groups_map)
)
) || @post.topic&.pm_with_non_human_user?
true
else
@post.errors.add(:base, I18n.t("poll.insufficient_rights_to_create"))
false
end
end
end
end