Files
discourse/app/serializers/basic_topic_serializer.rb
T

5 lines
192 B
Ruby
Raw Normal View History

2013-03-14 14:45:29 -04:00
# The most basic attributes of a topic that we need to create a link for it.
2013-02-05 14:16:51 -05:00
class BasicTopicSerializer < ApplicationSerializer
2013-07-05 23:22:52 +02:00
attributes :id, :title, :fancy_title, :slug, :posts_count
2013-02-07 16:45:24 +01:00
end