This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-02-22 07:00:20 -08:00
|
|
|
module HomeHelper
|
2016-09-12 17:24:40 -07:00
|
|
|
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),
|
2016-09-12 17:24:40 -07:00
|
|
|
|
|
|
|
timelines: {
|
2016-10-07 07:00:11 -07: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-12 17:24:40 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|