2019-05-02 18:17:27 -04: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 17:22:52 -04:00
|
|
|
attributes :id, :title, :fancy_title, :slug, :posts_count
|
2013-02-07 10:45:24 -05:00
|
|
|
end
|