blob: 5b81c6e0487c6c5f51d8cb36e5d155c6299f04e9 (
plain) (
tree)
|
|
# 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
|