forked from treehouse/mastodon
Caching should work correctly now (fingers crossed)
parent
562044f36a
commit
c003e70758
|
@ -1,5 +1,5 @@
|
||||||
object @account
|
object @account
|
||||||
cache false
|
|
||||||
attribute :id
|
attribute :id
|
||||||
node(:following) { |account| @following[account.id] || false }
|
node(:following) { |account| @following[account.id] || false }
|
||||||
node(:followed_by) { |account| @followed_by[account.id] || false }
|
node(:followed_by) { |account| @followed_by[account.id] || false }
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
object @account
|
object @account
|
||||||
cache false
|
cache
|
||||||
|
|
||||||
attributes :id, :username, :acct, :display_name, :note
|
attributes :id, :username, :acct, :display_name, :note
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
object @context
|
object @context
|
||||||
cache false
|
|
||||||
|
|
||||||
node :ancestors do |context|
|
node :ancestors do |context|
|
||||||
partial 'api/v1/statuses/index', object: context.ancestors
|
partial 'api/v1/statuses/index', object: context.ancestors
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
object @status
|
object @status
|
||||||
cache false
|
cache
|
||||||
|
|
||||||
extends 'api/v1/statuses/_show'
|
extends 'api/v1/statuses/_show'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue