1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/views/home/initial_state.json.rabl

25 lines
456 B
Ruby

object false
node(:meta) do
{
access_token: @token,
locale: I18n.locale,
me: current_account.id,
boost_modal: current_account.user.setting_boost_modal,
}
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 }