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 +4 -4
- data/app/models/openstax/accounts/account.rb +2 -1
- data/app/representers/openstax/accounts/api/v1/account_representer.rb +6 -0
- data/app/routines/openstax/accounts/find_or_create_account.rb +4 -2
- data/db/migrate/18_add_grant_tutor_access_to_openstax_accounts_accounts.rb +5 -0
- data/lib/openstax/accounts/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ffaa6e6017568ff2aec46e9e34189be66aee407ab518efc713f5632b1cdfcc2e
|
4
|
+
data.tar.gz: c990c936f23ca170bb15f99f52ed1265874881fc4f264b443c6acb9805181888
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bdb1fcf467f575dde03294f690fc8ddace34c812bdd91ac92027a810d32c36668a725de64469e050039ad77ffe247b084125107a99777773c2e38bece3720967
|
7
|
+
data.tar.gz: c1c1f7b32f71f9e91e771f20804f66b444aae41a32b4d6032ab97a63f3d76aad562e00d070f1ca991779e74efde627cc1684b3d8661dadcc44a06d915273060f
|
@@ -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,
|
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
|
|
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.
|
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-
|
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
|