347a153b3d
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
24 lines
397 B
Ruby
24 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 }
|