blob: 71949ab0ecbbb989a605f2e5f4da85f99fa4c1ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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 }
|