Guest User

Untitled

a guest
May 22nd, 2018
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Product < ActiveRecord::Base
  2. has_many :variations
  3.  
  4. def uploaded_by
  5. "Admin"
  6. end
  7. end
  8.  
  9. class Variation < ActiveRecord::Base
  10. belongs_to :product
  11. delegate :uploaded_by, :to => :product
  12. end
Add Comment
Please, Sign In to add comment