mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-27 00:11:35 +01:00
24 lines
359 B
Ruby
24 lines
359 B
Ruby
object false
|
|
|
|
node(:meta) {
|
|
{
|
|
access_token: @token,
|
|
locale: I18n.locale,
|
|
me: current_account.id,
|
|
}
|
|
}
|
|
|
|
node(:compose) {
|
|
{
|
|
me: current_account.id,
|
|
private: current_account.locked?,
|
|
}
|
|
}
|
|
|
|
node(:accounts) {
|
|
{
|
|
current_account.id => partial('api/v1/accounts/show', object: current_account),
|
|
}
|
|
}
|
|
|
|
node(:settings) { @web_settings }
|