This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
|
# 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
|