hensei-api/app/models/favorite.rb

7 lines
117 B
Ruby

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