Index is added so organizer can see who they have invited. Oganizers will now be able to invite users with their email.Organizer will be able to delete and edit a invite.Add test for actions.
9 lines
201 B
Ruby
9 lines
201 B
Ruby
FactoryBot.define do
|
|
factory :invite do
|
|
conference
|
|
emails { 'user@example.com' }
|
|
end_date { '2019-08-12' }
|
|
invite_for { (I18n.t 'booth').capitalize.to_s }
|
|
user_id { 1 }
|
|
end
|
|
end
|