atomic_lti 1.8.1 → 1.8.2
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: f26fbc20460c3777fce4b8f4302da1bbfc22f7634f4a5bdec6cfafe7aed02aea
|
|
4
|
+
data.tar.gz: 6b7c7dcf961b31d74b7345c097061178e590661eabbc931babf40bcf3b8c484c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fce094f7646c8ed322ea8675ddb70bc6f86049335ff8af4bda4eb2789c29cf1c9e21a8f536cfc7f84a90c290f3b0e5673b1eb9c4210a078bf87c66ffc093bf83
|
|
7
|
+
data.tar.gz: b2e027cf1002f2db06f3b345e3c9c8a5cc76dbdaab866b86082cfa4442e37d10e36367b81914d16d093d4748915ce3a68046dd69745ba9bf52bee5432c6c6279
|
|
@@ -119,7 +119,6 @@ module AtomicLti
|
|
|
119
119
|
def self.request_token_uncached(iss:, deployment_id:, scopes:)
|
|
120
120
|
# Details here:
|
|
121
121
|
# https://www.imsglobal.org/spec/security/v1p0/#using-json-web-tokens-with-oauth-2-0-client-credentials-grant
|
|
122
|
-
puts "GETTING TOKEN"
|
|
123
122
|
body = {
|
|
124
123
|
grant_type: "client_credentials",
|
|
125
124
|
client_assertion_type: "urn:ietf:params:oauth:client-assertion-type:jwt-bearer",
|
|
@@ -2,9 +2,8 @@ module AtomicLti
|
|
|
2
2
|
module Services
|
|
3
3
|
class NamesAndRoles < AtomicLti::Services::Base
|
|
4
4
|
|
|
5
|
-
def initialize(id_token_decoded:
|
|
6
|
-
|
|
7
|
-
super(id_token_decoded:, iss:, deployment_id:)
|
|
5
|
+
def initialize(id_token_decoded:)
|
|
6
|
+
super(id_token_decoded: id_token_decoded)
|
|
8
7
|
end
|
|
9
8
|
|
|
10
9
|
def scopes
|
data/lib/atomic_lti/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: atomic_lti
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Petro
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2024-
|
|
13
|
+
date: 2024-04-26 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: pg
|
|
@@ -133,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
133
133
|
- !ruby/object:Gem::Version
|
|
134
134
|
version: '0'
|
|
135
135
|
requirements: []
|
|
136
|
-
rubygems_version: 3.4.
|
|
136
|
+
rubygems_version: 3.4.19
|
|
137
137
|
signing_key:
|
|
138
138
|
specification_version: 4
|
|
139
139
|
summary: AtomicLti implements the LTI Advantage specification.
|