hensei-api/app/models/favorite.rb
2022-12-21 00:22:47 -08:00

10 lines
153 B
Ruby

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