mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
f1d547c301
We now show if a queued or flagged post is a reply to another when in the review queue. It's especially helpful for queued posts where normally they are linked to the topic where they are created, and you have no context about the reply. Note that this will only apply to new queued posts going forward. Previously queued posts will not show the "in reply to"
23 lines
428 B
Ruby
23 lines
428 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ReviewableFlaggedPostSerializer < ReviewableSerializer
|
|
target_attributes :cooked, :raw, :reply_count, :reply_to_post_number
|
|
attributes :blank_post, :post_updated_at, :post_version
|
|
|
|
def post_version
|
|
object.target&.version
|
|
end
|
|
|
|
def post_updated_at
|
|
object.target&.updated_at
|
|
end
|
|
|
|
def blank_post
|
|
true
|
|
end
|
|
|
|
def include_blank_post?
|
|
object.target.blank?
|
|
end
|
|
end
|