discourse/plugins/poll/lib/post_validator.rb

23 lines
485 B
Ruby
Raw Normal View History

module DiscoursePoll
class PostValidator
def initialize(post)
@post = post
end
def validate_post
min_trust_level = SiteSetting.poll_minimum_trust_level_to_create
trusted = @post&.user&.staff? ||
@post&.user&.trust_level >= TrustLevel[min_trust_level]
if !trusted
message = I18n.t("poll.insufficient_rights_to_create")
@post.errors.add(:base, message)
return false
end
true
end
end
end