2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
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
|