Browse Source

Caching should work correctly now (fingers crossed)

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
c003e70758
4 changed files with 3 additions and 4 deletions
  1. +1
    -1
      app/views/api/v1/accounts/relationship.rabl
  2. +1
    -1
      app/views/api/v1/accounts/show.rabl
  3. +0
    -1
      app/views/api/v1/statuses/context.rabl
  4. +1
    -1
      app/views/api/v1/statuses/show.rabl

+ 1
- 1
app/views/api/v1/accounts/relationship.rabl View File

@ -1,5 +1,5 @@
object @account
cache false
attribute :id
node(:following) { |account| @following[account.id] || false }
node(:followed_by) { |account| @followed_by[account.id] || false }

+ 1
- 1
app/views/api/v1/accounts/show.rabl View File

@ -1,5 +1,5 @@
object @account
cache false
cache
attributes :id, :username, :acct, :display_name, :note

+ 0
- 1
app/views/api/v1/statuses/context.rabl View File

@ -1,5 +1,4 @@
object @context
cache false
node :ancestors do |context|
partial 'api/v1/statuses/index', object: context.ancestors

+ 1
- 1
app/views/api/v1/statuses/show.rabl View File

@ -1,5 +1,5 @@
object @status
cache false
cache
extends 'api/v1/statuses/_show'

Loading…
Cancel
Save