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,
|
2022-10-12 20:07:30 +01:00
|
|
|
:current_account, :admin, :owner, :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
|