openstax_accounts 9.3.0 → 9.4.0

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: c0afe5b4c7d13abc030803addf862691d260ea3036361a2043d8f85bf88fa7fb
4
- data.tar.gz: 24502a41f6cb02271869bdff9869ed3f8efedbe1b393227193746ae6c5d8fc0c
3
+ metadata.gz: ffaa6e6017568ff2aec46e9e34189be66aee407ab518efc713f5632b1cdfcc2e
4
+ data.tar.gz: c990c936f23ca170bb15f99f52ed1265874881fc4f264b443c6acb9805181888
5
5
  SHA512:
6
- metadata.gz: 31573e6b6cef57ee9fb3e8cef36b20ffed6a0e122cf667857daedc1c4049753f7a7bdfcee67f8400711708c9aed795f474dddc194fb1876aa71d654a75ee42e0
7
- data.tar.gz: ecd575021a0091b2f6f75d93416b09be0335e499498448b10383091ea4aa8eec1d110718b41a50486c54e6b8649fac45e9d06feed7fb0e3916c51461e677c5c0
6
+ metadata.gz: bdb1fcf467f575dde03294f690fc8ddace34c812bdd91ac92027a810d32c36668a725de64469e050039ad77ffe247b084125107a99777773c2e38bece3720967
7
+ data.tar.gz: c1c1f7b32f71f9e91e771f20804f66b444aae41a32b4d6032ab97a63f3d76aad562e00d070f1ca991779e74efde627cc1684b3d8661dadcc44a06d915273060f
@@ -16,7 +16,8 @@ module OpenStax::Accounts
16
16
  :salesforce_contact_id,
17
17
  :support_identifier,
18
18
  :is_test,
19
- :is_kip
19
+ :is_kip,
20
+ :grant_tutor_access
20
21
  ]
21
22
 
22
23
  attr_accessor :syncing
@@ -117,6 +117,12 @@ module OpenStax
117
117
  schema_info: {
118
118
  description: 'Whether or not this is a Key Institutional Partner account'
119
119
  }
120
+
121
+ property :grant_tutor_access,
122
+ type: :boolean,
123
+ schema_info: {
124
+ description: 'Whether or not the account should be granted Tutor access'
125
+ }
120
126
  end
121
127
  end
122
128
  end
@@ -7,7 +7,8 @@ module OpenStax
7
7
 
8
8
  def exec(email: nil, username: nil, password: nil, first_name: nil, last_name: nil,
9
9
  full_name: nil, title: nil, salesforce_contact_id: nil, faculty_status: nil,
10
- role: nil, school_type: nil, school_location: nil, is_kip: nil, is_test: nil)
10
+ role: nil, school_type: nil, school_location: nil, is_kip: nil,
11
+ grant_tutor_access: nil, is_test: nil)
11
12
  raise(
12
13
  ArgumentError,
13
14
  'You must specify either an email address or a username (and an optional password)'
@@ -24,7 +25,7 @@ module OpenStax
24
25
  first_name: first_name, last_name: last_name, full_name: full_name,
25
26
  salesforce_contact_id: salesforce_contact_id, faculty_status: faculty_status,
26
27
  role: role, school_type: school_type, school_location: school_location,
27
- is_kip: is_kip, is_test: is_test
28
+ is_kip: is_kip, grant_tutor_access: grant_tutor_access, is_test: is_test
28
29
  )
29
30
  fatal_error(code: :invalid_inputs) unless (200..202).include?(response.status)
30
31
 
@@ -49,6 +50,7 @@ module OpenStax
49
50
  account.school_location = school_location || :unknown_school_location
50
51
  account.support_identifier = support_identifier
51
52
  account.is_kip = is_kip
53
+ account.grant_tutor_access = grant_tutor_access
52
54
  account.is_test = is_test
53
55
  end
54
56
 
@@ -0,0 +1,5 @@
1
+ class AddGrantTutorAccessToOpenStaxAccountsAccounts < ActiveRecord::Migration[5.2]
2
+ def change
3
+ add_column :openstax_accounts_accounts, :grant_tutor_access, :boolean
4
+ end
5
+ end
@@ -1,5 +1,5 @@
1
1
  module OpenStax
2
2
  module Accounts
3
- VERSION = '9.3.0'
3
+ VERSION = '9.4.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openstax_accounts
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.3.0
4
+ version: 9.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - JP Slavinsky
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-22 00:00:00.000000000 Z
11
+ date: 2020-07-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -343,6 +343,7 @@ files:
343
343
  - db/migrate/15_drop_accounts_groups.rb
344
344
  - db/migrate/16_add_is_kip_to_openstax_accounts_accounts.rb
345
345
  - db/migrate/17_add_school_location_to_openstax_accounts_accounts.rb
346
+ - db/migrate/18_add_grant_tutor_access_to_openstax_accounts_accounts.rb
346
347
  - db/migrate/1_create_openstax_accounts_groups.rb
347
348
  - db/migrate/2_create_openstax_accounts_group_members.rb
348
349
  - db/migrate/3_create_openstax_accounts_group_owners.rb