Created
December 24, 2016 18:24
-
-
Save bleonard/35221d86216546172cc9d1c093d11839 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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