mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-26 09:28:35 +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
|