c9e00f1d7c
That's another tiny query that I'm okay with just removing the cache overhead complexity for right now!
10 lines
299 B
Ruby
10 lines
299 B
Ruby
class ContributionObserver < ActiveRecord::Observer
|
|
include FragmentExpiration
|
|
|
|
def after_create(contribution)
|
|
if contribution.contributed_type == 'SwfAsset'
|
|
item = contribution.contributed.item
|
|
expire_fragment_in_all_locales("items/#{item.id} contributors")
|
|
end
|
|
end
|
|
end
|