Guest User

Untitled

a guest
Feb 19th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Question < ActiveRecord::Base
  2.  
  3. has_one :answer
  4. has_many :suggestions
  5.  
  6. def s_attributes=(s_attributes)
  7. s_attributes.each do |attr|
  8. suggestions.build(attr)
  9. end
  10. end
  11.  
  12. end
Add Comment
Please, Sign In to add comment