10 lines
153 B
Ruby
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
|