11 lines
313 B
Ruby
11 lines
313 B
Ruby
# frozen_string_literal: true
|
|
|
|
class InitialStatePresenter < ActiveModelSerializers::Model
|
|
attributes :settings, :push_subscription, :token,
|
|
:current_account, :admin, :owner, :text, :visibility,
|
|
:disabled_account, :moved_to_account
|
|
|
|
def role
|
|
current_account&.user_role
|
|
end
|
|
end
|