osem-fcy/spec/factories/invites.rb
Rahul 1c04e820b8 add invites actions in controller and views
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.
2019-10-25 13:28:03 +05:30

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