mirror of
https://github.com/discourse/discourse-solved.git
synced 2025-07-04 12:52:17 +00:00
12 lines
183 B
Ruby
12 lines
183 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DiscourseSolved::PostSerializerExtension
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
private
|
||
|
|
||
|
def topic
|
||
|
topic_view&.topic || object.topic
|
||
|
end
|
||
|
end
|