add conference options to the broadcasts; implement auth to microsoft

This commit is contained in:
Bilal
2020-08-20 13:09:10 +03:00
parent 4b5238435a
commit 1d29f14953
25 changed files with 508 additions and 47 deletions

View File

@@ -25,6 +25,7 @@ feature 'User managing broadcasts' do
by 'filling out the form' do
fill_in broadcast_name_field, with: 'My Broadcast'
select_conference_option('Zoom')
select_time_zone("New Delhi")
end
@@ -352,5 +353,10 @@ feature 'User managing broadcasts' do
t 'broadcasts.file.actions.delete_file'
end
def select_conference_option(value)
if value.present?
select value, from: "broadcast[conference_option]"
end
end
end