hensei-api/app/models/favorite.rb

8 lines
139 B
Ruby

class Favorite < ApplicationRecord
belongs_to :user
belongs_to :party
def party
Party.find(self.party_id)
end
end