mirror of
https://github.com/discourse/discourse.git
synced 2026-08-07 13:19:19 +08:00
11 lines
183 B
Ruby
Vendored
11 lines
183 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module DiscourseSolved::PostSerializerExtension
|
|
extend ActiveSupport::Concern
|
|
|
|
private
|
|
|
|
def topic
|
|
topic_view&.topic || object.topic
|
|
end
|
|
end
|