zoom_rb 0.8.5 → 0.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87d7cc4ec57a2ec29ae1f363155844a1dcab08454beb12dafa37c87b4c14d5c3
|
4
|
+
data.tar.gz: bce3d9b5ba1cb6da18f8d647c8f7f99aa333083360f121714ef455e1f7730818
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d0cc2484ddfae76d99b745113e2376d41796f456bbff4d4bfa000086d5f5f7e5e6c30f29abacfd746aa931490620298aeadf268bf759342abea316c5ac5ccc7
|
7
|
+
data.tar.gz: 1bac71bc72c540a63af1929d50e28def004c9ea1c33e520a30a4f92c435384567ebfeb1b3acbcc53d3f5878172b7485f3d5bcde646f46289fc3ca929cd5aecf9
|
data/Gemfile.lock
CHANGED
data/lib/zoom/actions/webinar.rb
CHANGED
@@ -93,9 +93,10 @@ module Zoom
|
|
93
93
|
end
|
94
94
|
|
95
95
|
def webinar_registrants_status_update(*args)
|
96
|
-
|
97
|
-
|
98
|
-
|
96
|
+
params = Zoom::Params.new(Utils.extract_options!(args))
|
97
|
+
params.require(:id, :action)
|
98
|
+
.permit(:occurrence_id, registrants: [])
|
99
|
+
Utils.parse_response self.class.put("/webinars/#{params[:id]}/registrants/status", body: params.except(:id, :occurrence_ids).to_json, query: params.slice(:occurrence_ids).merge(access_token: access_token))
|
99
100
|
end
|
100
101
|
|
101
102
|
def past_webinar_list(*args)
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe Zoom::Actions::Webinar do
|
6
|
+
let(:zc) { zoom_client }
|
7
|
+
let(:args) { { id: 'webinar_id', action: 'approve' } }
|
8
|
+
|
9
|
+
describe '#webinar_registrants_status_update' do
|
10
|
+
context 'with a valid response' do
|
11
|
+
before :each do
|
12
|
+
stub_request(
|
13
|
+
:put,
|
14
|
+
zoom_url("/webinars/#{args[:id]}/registrants/status")
|
15
|
+
).to_return(status: 204)
|
16
|
+
end
|
17
|
+
|
18
|
+
it "requires a 'id' argument" do
|
19
|
+
expect { zc.webinar_registrants_status_update(filter_key(args, :id)) }.to raise_error(Zoom::ParameterMissing, [:id].to_s)
|
20
|
+
end
|
21
|
+
|
22
|
+
it "requires a 'action' argument" do
|
23
|
+
expect { zc.webinar_registrants_status_update(filter_key(args, :action)) }.to raise_error(Zoom::ParameterMissing, [:action].to_s)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
context 'with a 4xx response' do
|
28
|
+
before :each do
|
29
|
+
stub_request(
|
30
|
+
:put,
|
31
|
+
zoom_url("/webinars/#{args[:id]}/registrants/status")
|
32
|
+
).to_return(status: 404,
|
33
|
+
body: json_response('error', 'validation'),
|
34
|
+
headers: {"Content-Type"=> "application/json"})
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'raises Zoom::Error exception' do
|
38
|
+
expect { zc.webinar_registrants_status_update(args) }.to raise_error(Zoom::Error)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
data/zoom_rb.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zoom_rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Boe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-11-
|
11
|
+
date: 2018-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -305,8 +305,8 @@ files:
|
|
305
305
|
- spec/lib/zoom/actions/webinar/questions_spec.rb
|
306
306
|
- spec/lib/zoom/actions/webinar/register_spec.rb
|
307
307
|
- spec/lib/zoom/actions/webinar/registrants/add_spec.rb
|
308
|
-
- spec/lib/zoom/actions/webinar/registrants/approve_spec.rb
|
309
308
|
- spec/lib/zoom/actions/webinar/registrants/list_spec.rb
|
309
|
+
- spec/lib/zoom/actions/webinar/registrants/update_status_spec.rb
|
310
310
|
- spec/lib/zoom/actions/webinar/registration_cancel_spec.rb
|
311
311
|
- spec/lib/zoom/actions/webinar/registration_spec.rb
|
312
312
|
- spec/lib/zoom/actions/webinar/update_spec.rb
|
@@ -477,8 +477,8 @@ test_files:
|
|
477
477
|
- spec/lib/zoom/actions/webinar/questions_spec.rb
|
478
478
|
- spec/lib/zoom/actions/webinar/register_spec.rb
|
479
479
|
- spec/lib/zoom/actions/webinar/registrants/add_spec.rb
|
480
|
-
- spec/lib/zoom/actions/webinar/registrants/approve_spec.rb
|
481
480
|
- spec/lib/zoom/actions/webinar/registrants/list_spec.rb
|
481
|
+
- spec/lib/zoom/actions/webinar/registrants/update_status_spec.rb
|
482
482
|
- spec/lib/zoom/actions/webinar/registration_cancel_spec.rb
|
483
483
|
- spec/lib/zoom/actions/webinar/registration_spec.rb
|
484
484
|
- spec/lib/zoom/actions/webinar/update_spec.rb
|