2016-02-22 16:00:20 +01:00
|
|
|
module HomeHelper
|
2016-09-13 02:24:40 +02:00
|
|
|
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),
|
2016-09-13 02:24:40 +02:00
|
|
|
|
|
|
|
timelines: {
|
2016-09-27 16:58:23 +02: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)
|
2016-09-13 02:24:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
2016-02-22 16:00:20 +01:00
|
|
|
end
|