Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add waiting_room parameter to meeting_create #470

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading