about summary refs log tree commit diff
path: root/app/helpers/home_helper.rb
blob: 86cce4c018d0061c848dcdb7bf6ea638d2f4f2f6 (plain) (blame)
1
2
3
4
5
6
7
8
module HomeHelper
  def default_props
    {
      token: @token,
      account: render(file: 'api/v1/accounts/show', locals: { account: current_user.account }, formats: :json)
    }
  end
end