mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-04 21:54:41 +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
|