mastodon/app/helpers/home_helper.rb

15 lines
425 B
Ruby
Raw Normal View History

2016-02-22 16:00:20 +01:00
module HomeHelper
def default_props
{
token: @token,
2016-09-27 16:58:23 +02:00
account: render(file: 'api/v1/accounts/show', locals: { account: current_user.account }, formats: :json),
timelines: {
2016-10-07 16:00:11 +02:00
home: render(file: 'api/v1/statuses/index', locals: { statuses: @home }, formats: :json),
mentions: render(file: 'api/v1/statuses/index', locals: { statuses: @mentions }, formats: :json)
}
}
end
2016-02-22 16:00:20 +01:00
end