Skip to content

Commit

Permalink
Merge pull request #470 from KatherineMuedas/waiting-room-meeting-create
Browse files Browse the repository at this point in the history
Add waiting_room parameter to meeting_create
  • Loading branch information
kyleboe authored Mar 18, 2024
2 parents 03515d5 + 0544d85 commit 89fada0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/zoom/actions/meeting.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module Meeting
post 'meeting_create', '/users/:user_id/meetings',
permit: %i[
topic type start_time duration schedule_for timezone password default_password agenda tracking_fields
recurrence settings template_id pre_schedule
recurrence settings template_id pre_schedule waiting_room
]

# Get a meeting on Zoom via meeting ID, return the meeting info.
Expand Down
2 changes: 1 addition & 1 deletion spec/lib/zoom/actions/meeting/create_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

describe Zoom::Actions::Meeting do
let(:zc) { zoom_client }
let(:args) { { topic: 'Zoom Meeting Topic', start_time: '2020-05-05T21:00:00Z', timezone: 'America/New_York', duration: 30, type: 2, user_id: 'r55v2FgSTVmDmVot18DX3A', template_id: 'template_id' } }
let(:args) { { topic: 'Zoom Meeting Topic', start_time: '2020-05-05T21:00:00Z', timezone: 'America/New_York', duration: 30, type: 2, user_id: 'r55v2FgSTVmDmVot18DX3A', template_id: 'template_id', waiting_room: false } }
let(:response) { zc.meeting_create(args) }

describe '#meeting_create action' do
Expand Down

0 comments on commit 89fada0

Please sign in to comment.