You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
425 B

  1. module HomeHelper
  2. def default_props
  3. {
  4. token: @token,
  5. account: render(file: 'api/v1/accounts/show', locals: { account: current_user.account }, formats: :json),
  6. timelines: {
  7. home: render(file: 'api/v1/statuses/index', locals: { statuses: @home }, formats: :json),
  8. mentions: render(file: 'api/v1/statuses/index', locals: { statuses: @mentions }, formats: :json)
  9. }
  10. }
  11. end
  12. end