about summary refs log tree commit diff
path: root/app/serializers/rest/featured_tag_serializer.rb
blob: 08121ff16db2be23bcb352b5a4f4cfc129eb74a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class REST::FeaturedTagSerializer < ActiveModel::Serializer
  attributes :id, :name, :statuses_count, :last_status_at

  def id
    object.id.to_s
  end
end