nas/app/presenters/initial_state_presenter.rb
2023-04-06 04:27:52 +09:00

11 lines
329 B
Ruby

# frozen_string_literal: true
class InitialStatePresenter < ActiveModelSerializers::Model
attributes :settings, :push_subscription, :token,
:current_account, :admin, :owner, :text, :visibility, :searchability,
:disabled_account, :moved_to_account
def role
current_account&.user_role
end
end