featured_tag_serializer.rb 188 B

123456789
  1. # frozen_string_literal: true
  2. class REST::FeaturedTagSerializer < ActiveModel::Serializer
  3. attributes :id, :name, :statuses_count, :last_status_at
  4. def id
  5. object.id.to_s
  6. end
  7. end