mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
14 lines
245 B
Ruby
14 lines
245 B
Ruby
|
# 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
|