mirror of
https://github.com/discourse/discourse.git
synced 2025-01-25 09:04:59 +08:00
5 lines
184 B
Ruby
5 lines
184 B
Ruby
# The most basic attributes of a topic that we need to create a link for it.
|
|
class BasicTopicSerializer < ApplicationSerializer
|
|
attributes :id, :fancy_title, :slug, :posts_count
|
|
end
|