Skip to content

Instantly share code, notes, and snippets.

@bleonard
Created December 24, 2016 18:24
Show Gist options
  • Save bleonard/35221d86216546172cc9d1c093d11839 to your computer and use it in GitHub Desktop.
Save bleonard/35221d86216546172cc9d1c093d11839 to your computer and use it in GitHub Desktop.
ResqueBus.dispatch('profile') do
subscribe 'post_rated' do |attributes|
profile = Profile::Document.find_by(user_id: attributes['author_id'])
profile.post_ratings_total = attributes['total_ratings']
profile.post_rating_average = attributes['new_average']
profile.save!
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment