mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:33: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
33 lines
718 B
Ruby
33 lines
718 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Reviewable < ActiveRecord::Base
|
|
class PerformResult
|
|
include ActiveModel::Serialization
|
|
|
|
attr_reader :reviewable, :status, :created_post, :created_post_topic
|
|
attr_accessor(
|
|
:transition_to,
|
|
:remove_reviewable_ids,
|
|
:errors,
|
|
:recalculate_score,
|
|
:update_flag_stats,
|
|
:after_commit
|
|
)
|
|
|
|
def initialize(reviewable, status)
|
|
@status = status
|
|
@reviewable = reviewable
|
|
@remove_reviewable_ids = [reviewable.id] if success?
|
|
end
|
|
|
|
def created_post=(created_post)
|
|
@created_post = created_post
|
|
@created_post_topic = created_post.topic
|
|
end
|
|
|
|
def success?
|
|
@status == :success
|
|
end
|
|
end
|
|
end
|