9ca34c5a22
This model is responsible for the 1..n - 1..n relationship between an event and the people that will participate in it.
8 lines
134 B
Ruby
8 lines
134 B
Ruby
FactoryGirl.define do
|
|
factory :participation do
|
|
association :participant, factory: :user
|
|
event
|
|
approved false
|
|
end
|
|
end
|