mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 21:14:47 +00:00
44b2ee3485
* Add customizable user roles * Various fixes and improvements * Add migration for old settings and fix tootctl role management
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
|