Guest User

Untitled

a guest
May 25th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. def rate_it( score, user_id )
  2. return unless score
  3. rate = rates.find_or_initialize_by_user_id( user_id )
  4. rate.score = score.to_i
  5. rate.save
  6. end
Add Comment
Please, Sign In to add comment