domoscio_rails 0.4.26 → 0.4.28

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: 690cab13ee564cf0b93654cd476a82816d84e19fa502b1e6c41a65c50ba1fc28
4
- data.tar.gz: f7d558e66031601cdcf4b97971137b9cc3c242fafd4df3068d83ddabe7194d38
3
+ metadata.gz: a46f750a1045192193b8fbe7aed58125255031b3a43b1098fdb0b4eb2172a015
4
+ data.tar.gz: 0115a644b0d3eda31dad83c393a25bb4b2678bb37cfd1e935e96bb6ef8998b0f
5
5
  SHA512:
6
- metadata.gz: be90244c21d70f09b22cdf846a5747e0281b5ec18fc286c47a8cdb0b02b87b07e1b6417bb2ce3d5da64b40d3275dcfb7465151e9ccde0e82a466fa27975855d1
7
- data.tar.gz: 0adcb4c3f4624d7ee5a9671100c0a597a3e7701200e9aefa5c720699b7f7d785cd8e1c0361ca30ac145b0d6e88a9c0fd3244218f7f95f1b0c6c9117dbc91e0dc
6
+ metadata.gz: ece75e6ed8b2905f4a1e13c84efa708d1c9a6f63b5d131b88aa6a0aa312618b628f49343b4a6a4e247c83e23bb95d40904279094318bf388fc864b613ea9dbaa
7
+ data.tar.gz: 7d809c5e588c2d08a9bc8b7f5a2f408b7fb624d676f1676a5edfa01b6fc402c923930368348218b392d2168e7af46f5d942fbdf3836da39d0789a0e1b9d43afb
@@ -0,0 +1,6 @@
1
+ module DomoscioRails
2
+ class StudentGroupUser
3
+ include DomoscioRails::Resource
4
+ include DomoscioRails::HTTPCalls::Fetch
5
+ end
6
+ end
@@ -1,3 +1,3 @@
1
1
  module DomoscioRails
2
- VERSION = '0.4.26'.freeze
2
+ VERSION = '0.4.28'.freeze
3
3
  end
@@ -20,6 +20,7 @@ require 'domoscio_rails/data/learning_session'
20
20
  require 'domoscio_rails/data/scorm'
21
21
  require 'domoscio_rails/data/student'
22
22
  require 'domoscio_rails/data/student_group'
23
+ require 'domoscio_rails/data/student_group_user'
23
24
  require 'domoscio_rails/data/question'
24
25
  require 'domoscio_rails/data/user'
25
26
  require 'domoscio_rails/data/account'
@@ -155,7 +156,7 @@ module DomoscioRails
155
156
  # This helper will check the response status and build the correcponding DomoscioRails::ResponseError
156
157
  #
157
158
  def self.raise_http_failure(uri, response, params)
158
- return if response.is_a? Net::HTTPSuccess
159
+ return if response.is_a?(Net::HTTPSuccess) || response.is_a?(Net::HTTPNoContent)
159
160
 
160
161
  raise ResponseError.new(
161
162
  uri,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: domoscio_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.26
4
+ version: 0.4.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benoit Praly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-13 00:00:00.000000000 Z
11
+ date: 2024-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json
@@ -65,6 +65,7 @@ files:
65
65
  - lib/domoscio_rails/data/scorm.rb
66
66
  - lib/domoscio_rails/data/student.rb
67
67
  - lib/domoscio_rails/data/student_group.rb
68
+ - lib/domoscio_rails/data/student_group_user.rb
68
69
  - lib/domoscio_rails/data/supervisor.rb
69
70
  - lib/domoscio_rails/data/user.rb
70
71
  - lib/domoscio_rails/errors.rb