mastodon/app/views/home/initial_state.json.rabl
Eugen Rochko 347a153b3d Add API modifiers to limit returned toots from public/hashtag timelines
to only those from local users; Add link to "extended information" to
getting started in the UI; Add defaults for posting privacy; Change
how publish button looks depending on posting privacy chosen
2017-02-06 23:16:20 +01:00

25 lines
397 B
Ruby

object false
node(:meta) do
{
access_token: @token,
locale: I18n.locale,
me: current_account.id,
}
end
node(:compose) do
{
me: current_account.id,
default_privacy: current_account.user.setting_default_privacy,
}
end
node(:accounts) do
{
current_account.id => partial('api/v1/accounts/show', object: current_account),
}
end
node(:settings) { @web_settings }