mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 20:36:39 +08:00
9f42a235ab
This fixes a regression introduced by an earlier change which changed `ReviewableQueuedPost` record creation to use the more appropriate `target_created_by_id` for the author of the post being queued instead of setting it to the creator(system user) of the `ReviewableQueuedPost` record.
38 lines
798 B
Ruby
38 lines
798 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PendingPostSerializer < ApplicationSerializer
|
|
attributes :id,
|
|
:avatar_template,
|
|
:category_id,
|
|
:created_at,
|
|
:created_by_id,
|
|
:name,
|
|
:raw_text,
|
|
:title,
|
|
:topic_id,
|
|
:topic_url,
|
|
:username
|
|
|
|
delegate :created_by, :payload, :topic, to: :object, private: true
|
|
delegate :url, to: :topic, prefix: true, allow_nil: true
|
|
delegate :avatar_template, :name, :username, to: :target_created_by, allow_nil: true
|
|
|
|
def created_by_id
|
|
object.target_created_by_id
|
|
end
|
|
|
|
def raw_text
|
|
payload["raw"]
|
|
end
|
|
|
|
def title
|
|
payload["title"] || topic&.title
|
|
end
|
|
|
|
private
|
|
|
|
def target_created_by
|
|
object.target_created_by
|
|
end
|
|
end
|