mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 17:57:24 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
21 lines
453 B
Ruby
21 lines
453 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscoursePoll
|
|
class PostValidator
|
|
def initialize(post)
|
|
@post = post
|
|
end
|
|
|
|
def validate_post
|
|
min_trust_level = SiteSetting.poll_minimum_trust_level_to_create
|
|
|
|
if @post&.user&.staff? || @post&.user&.trust_level >= TrustLevel[min_trust_level]
|
|
true
|
|
else
|
|
@post.errors.add(:base, I18n.t("poll.insufficient_rights_to_create"))
|
|
false
|
|
end
|
|
end
|
|
end
|
|
end
|