2017-01-09 05:00:55 -08:00
|
|
|
object false
|
|
|
|
|
2017-02-06 14:16:20 -08:00
|
|
|
node(:meta) do
|
2017-01-09 05:00:55 -08:00
|
|
|
{
|
2017-04-14 17:32:42 -07:00
|
|
|
streaming_api_base_url: @streaming_api_base_url,
|
2017-01-09 05:00:55 -08:00
|
|
|
access_token: @token,
|
|
|
|
locale: I18n.locale,
|
2017-04-17 15:16:32 -07:00
|
|
|
domain: site_hostname,
|
2017-01-09 05:00:55 -08:00
|
|
|
me: current_account.id,
|
2017-04-16 11:32:00 -07:00
|
|
|
admin: @admin.try(:id),
|
2017-04-11 07:10:16 -07:00
|
|
|
boost_modal: current_account.user.setting_boost_modal,
|
2017-04-17 03:14:03 -07:00
|
|
|
auto_play_gif: current_account.user.setting_auto_play_gif,
|
2017-01-09 05:00:55 -08:00
|
|
|
}
|
2017-02-06 14:16:20 -08:00
|
|
|
end
|
2017-01-09 05:00:55 -08:00
|
|
|
|
2017-02-06 14:16:20 -08:00
|
|
|
node(:compose) do
|
2017-01-09 05:00:55 -08:00
|
|
|
{
|
|
|
|
me: current_account.id,
|
2017-02-06 14:16:20 -08:00
|
|
|
default_privacy: current_account.user.setting_default_privacy,
|
2017-01-09 05:00:55 -08:00
|
|
|
}
|
2017-02-06 14:16:20 -08:00
|
|
|
end
|
2017-01-09 05:00:55 -08:00
|
|
|
|
2017-02-06 14:16:20 -08:00
|
|
|
node(:accounts) do
|
2017-04-16 11:32:00 -07:00
|
|
|
store = {}
|
|
|
|
store[current_account.id] = partial('api/v1/accounts/show', object: current_account)
|
|
|
|
store[@admin.id] = partial('api/v1/accounts/show', object: @admin) unless @admin.nil?
|
|
|
|
store
|
2017-02-06 14:16:20 -08:00
|
|
|
end
|
2017-01-09 05:00:55 -08:00
|
|
|
|
|
|
|
node(:settings) { @web_settings }
|