about summary refs log tree commit diff
path: root/app/helpers/home_helper.rb
blob: 61a4b4dd83c2f3f1ee9664867321e946dd3f1b24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module HomeHelper
  def default_props
    {
      token: @token,

      account: render(file: 'api/v1/accounts/show', locals: { account: current_user.account }, formats: :json),

      timelines: {
        home: render(file: 'api/v1/statuses/home', locals: { statuses: @home }, formats: :json),
        mentions: render(file: 'api/v1/statuses/mentions', locals: { statuses: @mentions }, formats: :json)
      }
    }
  end
end