2017-07-08 13:51:05 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class InitialStatePresenter < ActiveModelSerializers::Model
|
2017-08-14 03:53:31 +01:00
|
|
|
attributes :settings, :push_subscription, :token,
|
2020-06-08 23:16:30 +01:00
|
|
|
:current_account, :admin, :text, :visibility
|
2022-07-05 01:41:40 +01:00
|
|
|
|
|
|
|
def role
|
|
|
|
current_account&.user_role
|
|
|
|
end
|
2017-07-08 13:51:05 +01:00
|
|
|
end
|