2017-07-08 12:51:05 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class InitialStatePresenter < ActiveModelSerializers::Model
|
2017-08-14 02:53:31 +00:00
|
|
|
attributes :settings, :push_subscription, :token,
|
2022-11-05 17:28:13 +00:00
|
|
|
:current_account, :admin, :owner, :text, :visibility,
|
|
|
|
:disabled_account, :moved_to_account
|
2022-07-05 00:41:40 +00:00
|
|
|
|
|
|
|
def role
|
|
|
|
current_account&.user_role
|
|
|
|
end
|
2017-07-08 12:51:05 +00:00
|
|
|
end
|