about summary refs log blame commit diff
path: root/app/views/home/initial_state.json.rabl
blob: 71949ab0ecbbb989a605f2e5f4da85f99fa4c1ed (plain) (tree)
1
2
3
4
5
6
7
8
9
            
              



                           
   
 
                 
                           
                                                                  
   
   
 
                  

                                                                                   
   
                                 
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 }