Mastodon/app/serializers/rest/role_serializer.rb
2026-05-29 09:37:42 +00:00

16 lines
276 B
Ruby

# frozen_string_literal: true
class REST::RoleSerializer < ActiveModel::Serializer
attributes :id, :name, :permissions, :color, :highlighted
attribute :collection_limit
def id
object.id.to_s
end
def permissions
object.computed_permissions.to_s
end
end