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