discourse/app/serializers/flagged_topic_serializer.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
297 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class FlaggedTopicSerializer < ActiveModel::Serializer
attributes :id,
:title,
2015-08-28 06:31:32 -04:00
:fancy_title,
:slug,
:archived,
:closed,
:visible,
:archetype,
:relative_url
end