discourse/lib/new_post_result.rb
Sam Saffron 1be01f8dd4 DEV: Add support for Rails 6
Minor fixes to add Rails 6 support to Discourse, we now will boot
with RAILS_MASTER=1, all specs pass

Only one tiny deprecation left

Largest change was the way ActiveModel:Errors changed interface a
bit but there is a simple backwards compat way of working it
2019-05-02 16:23:25 +10:00

52 lines
844 B
Ruby

require_dependency 'has_errors'
class NewPostResult
include HasErrors
attr_reader :action
attr_accessor :reason
attr_accessor :post
attr_accessor :reviewable
attr_accessor :pending_count
def initialize(action, success = false)
@action = action
@success = success
end
def check_errors_from(obj)
if obj.errors.empty?
@success = true
else
add_errors_from(obj)
end
end
def check_errors(arr)
if arr.empty?
@success = true
else
arr.each { |e| errors.add(:base, e) unless errors[:base].include?(e) }
end
end
def queued_post
Discourse.deprecate(
"NewPostManager#queued_post is deprecated. Please use #reviewable instead.",
output_in_test: true
)
reviewable
end
def success?
@success
end
def failed?
!@success
end
end