mirror of
https://github.com/discourse/discourse.git
synced 2025-03-04 12:34:26 +08:00
18 lines
329 B
Ruby
18 lines
329 B
Ruby
![]() |
class SearchLogsSerializer < ApplicationSerializer
|
||
|
attributes :term,
|
||
|
:searches,
|
||
|
:click_through,
|
||
|
:clicked_topic_id,
|
||
|
:topic_title,
|
||
|
:topic_url,
|
||
|
:unique
|
||
|
|
||
|
def topic_title
|
||
|
object&.topic&.title
|
||
|
end
|
||
|
|
||
|
def topic_url
|
||
|
object&.topic&.url
|
||
|
end
|
||
|
end
|