1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/helpers/home_helper.rb

15 lines
427 B
Ruby
Raw Normal View History

2016-02-22 07:00:20 -08:00
module HomeHelper
def default_props
{
token: @token,
2016-09-27 07:58:23 -07:00
account: render(file: 'api/v1/accounts/show', locals: { account: current_user.account }, formats: :json),
timelines: {
2016-09-27 07:58:23 -07:00
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
2016-02-22 07:00:20 -08:00
end