openstax_accounts 9.6.0 → 9.6.1
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: 3c04bbffeac4ba8709854f17f88a7f16557ba24a42d45ed8380e617c3fef15e2
|
|
4
|
+
data.tar.gz: 83bde885fe37e200291515807b6da9844d500cf5d1def6c9e3ca328c0a2c5944
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f49ed4d33a3db74085ce26fe10c2a1ff16a9cfe90aa93d0a8dd12695ae1ae4bcb1b19af3968480b872ff05f6538a7328a770447a90fa168529818d78d0abf97
|
|
7
|
+
data.tar.gz: f7143ce0a2d70daf82c24847a12b1d34710237d39d2479c7df4a1ee6e5740ad4fcd71c46647d140312621ef8deacaa4a3f0471b7c89344d7b3d5d330c8ddde52
|
data/README.md
CHANGED
|
@@ -190,3 +190,9 @@ In that folder's config folder, create a `secret_settings.yml` file according to
|
|
|
190
190
|
instructions in `secret_settings.yml.example`. Run the example server in the normal way (bundle install..., migrate db, rails server).
|
|
191
191
|
7. Navigate to the home page, http://localhost:4000. Click log in and play around. You can also refresh the accounts site and see yourself logged in, log out, etc.
|
|
192
192
|
8. For fun, change example/config/openstax_accounts.rb to set `enable_stubbing` to `true`. Now when you click login you'll be taken to a developer-only page where you can login as other users, generate new users, create new users, etc.
|
|
193
|
+
|
|
194
|
+
Additional Documentation
|
|
195
|
+
------------------------
|
|
196
|
+
|
|
197
|
+
Additional documentation is in the [accounts-rails wiki](https://github.com/openstax/accounts-rails/wiki).
|
|
198
|
+
|
|
@@ -30,6 +30,12 @@ module OpenStax
|
|
|
30
30
|
required: true
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
+
property :is_administrator,
|
|
34
|
+
type: :boolean,
|
|
35
|
+
schema_info: {
|
|
36
|
+
description: 'Whether or not this user is an administrator on Accounts'
|
|
37
|
+
}
|
|
38
|
+
|
|
33
39
|
property :first_name,
|
|
34
40
|
type: String,
|
|
35
41
|
schema_info: {
|
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.6.
|
|
4
|
+
version: 9.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- JP Slavinsky
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-02-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -393,7 +393,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
393
393
|
- !ruby/object:Gem::Version
|
|
394
394
|
version: '0'
|
|
395
395
|
requirements: []
|
|
396
|
-
rubygems_version: 3.
|
|
396
|
+
rubygems_version: 3.2.6
|
|
397
397
|
signing_key:
|
|
398
398
|
specification_version: 4
|
|
399
399
|
summary: Rails common code and bindings for the 'accounts' API
|