mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2025-01-09 15:58:46 +01:00
14 lines
427 B
Ruby
14 lines
427 B
Ruby
module HomeHelper
|
|
def default_props
|
|
{
|
|
token: @token,
|
|
|
|
account: render(file: 'api/v1/accounts/show', locals: { account: current_user.account }, formats: :json),
|
|
|
|
timelines: {
|
|
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
|
|
end
|