chinwagsocial/app/serializers/rest/account_featured_tag_serializer.rb
2020-09-02 02:13:10 +02:00

20 lines
307 B
Ruby

# frozen_string_literal: true
class REST::AccountFeaturedTagSerializer < ActiveModel::Serializer
include RoutingHelper
attributes :id, :name, :url
def id
object.tag.id.to_s
end
def name
"##{object.name}"
end
def url
short_account_tag_url(object.account, object.tag)
end
end