1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-24 06:26:52 +00:00
mastodon/app/serializers/rest/role_serializer.rb

14 lines
245 B
Ruby
Raw Normal View History

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