sync_attr_with_auth0 0.2.5 → 0.2.6
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: 3b29ebf79d97e921bb5e8cb4f8faed85f37d626e6637a3ade34a4e551d7e005a
|
4
|
+
data.tar.gz: b1f528e810d6c6eb2eee5f2381f1ba1d337f1c83ced7c4ed63d795eb7fa8e804
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86e479e00c7f1e86cb2b02b8e1a3fc7b922e04d05cf750b1e233f39462cf2ae98e2d8810e6d706fc872bbd9a6704eb23ae3963b3eb4f42c581bb2d06f03d7c75
|
7
|
+
data.tar.gz: 1152e5d70a71e5e5cd4b208a6bafa39e788e6c4f03661aacd41d5497648008dcee15114bdf01f362f63a9be4472d73109be0f083f5bd40dd95bcd7ac0b354f5c
|
@@ -94,7 +94,7 @@ module SyncAttrWithAuth0
|
|
94
94
|
def create_in_auth0
|
95
95
|
params = auth0_create_params
|
96
96
|
|
97
|
-
response = SyncAttrWithAuth0::Auth0.create_user(
|
97
|
+
response = SyncAttrWithAuth0::Auth0.create_user(params, config: auth0_sync_configuration)
|
98
98
|
|
99
99
|
# Update the record with the uid and picture after_commit
|
100
100
|
@auth0_uid = response['user_id']
|
@@ -17,7 +17,7 @@ module SyncAttrWithAuth0
|
|
17
17
|
'jti' => UUIDTools::UUID.random_create.to_s
|
18
18
|
}
|
19
19
|
|
20
|
-
jwt = JWT.encode(payload, JWT.
|
20
|
+
jwt = JWT.encode(payload, JWT::Base64.url_decode(global_client_secret), 'HS256', { typ: 'JWT' })
|
21
21
|
|
22
22
|
return jwt
|
23
23
|
end # ::create_auth0_jwt
|
@@ -86,10 +86,9 @@ module SyncAttrWithAuth0
|
|
86
86
|
end # ::find_users_by_email
|
87
87
|
|
88
88
|
|
89
|
-
def self.create_user(
|
89
|
+
def self.create_user(params, config: SyncAttrWithAuth0.configuration)
|
90
90
|
auth0 = SyncAttrWithAuth0::Auth0.create_auth0_client(config: config)
|
91
|
-
|
92
|
-
return auth0.create_user(name, params)
|
91
|
+
return auth0.create_user(params.delete('connection'), params)
|
93
92
|
end # ::create_user
|
94
93
|
|
95
94
|
|
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sync_attr_with_auth0
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Patrick McGraw
|
8
8
|
- Mike Oliver
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
date: 2016-07-26 00:00:00.000000000 Z
|
@@ -87,28 +87,28 @@ dependencies:
|
|
87
87
|
requirements:
|
88
88
|
- - ">="
|
89
89
|
- !ruby/object:Gem::Version
|
90
|
-
version:
|
90
|
+
version: 5.0.0
|
91
91
|
type: :runtime
|
92
92
|
prerelease: false
|
93
93
|
version_requirements: !ruby/object:Gem::Requirement
|
94
94
|
requirements:
|
95
95
|
- - ">="
|
96
96
|
- !ruby/object:Gem::Version
|
97
|
-
version:
|
97
|
+
version: 5.0.0
|
98
98
|
- !ruby/object:Gem::Dependency
|
99
99
|
name: jwt
|
100
100
|
requirement: !ruby/object:Gem::Requirement
|
101
101
|
requirements:
|
102
|
-
- - "
|
102
|
+
- - ">="
|
103
103
|
- !ruby/object:Gem::Version
|
104
|
-
version:
|
104
|
+
version: 2.2.0
|
105
105
|
type: :runtime
|
106
106
|
prerelease: false
|
107
107
|
version_requirements: !ruby/object:Gem::Requirement
|
108
108
|
requirements:
|
109
|
-
- - "
|
109
|
+
- - ">="
|
110
110
|
- !ruby/object:Gem::Version
|
111
|
-
version:
|
111
|
+
version: 2.2.0
|
112
112
|
- !ruby/object:Gem::Dependency
|
113
113
|
name: rails
|
114
114
|
requirement: !ruby/object:Gem::Requirement
|
@@ -154,7 +154,7 @@ homepage: http://rubygems.org/gems/sync_attr_with_auth0
|
|
154
154
|
licenses:
|
155
155
|
- MIT
|
156
156
|
metadata: {}
|
157
|
-
post_install_message:
|
157
|
+
post_install_message:
|
158
158
|
rdoc_options: []
|
159
159
|
require_paths:
|
160
160
|
- lib
|
@@ -169,8 +169,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
169
169
|
- !ruby/object:Gem::Version
|
170
170
|
version: '0'
|
171
171
|
requirements: []
|
172
|
-
rubygems_version: 3.
|
173
|
-
signing_key:
|
172
|
+
rubygems_version: 3.0.6
|
173
|
+
signing_key:
|
174
174
|
specification_version: 4
|
175
175
|
summary: Synchronize attributes on a local ActiveRecord user model with the user metadata
|
176
176
|
store on Auth0
|