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