sync_attr_with_auth0 0.2.2 → 0.2.3
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/lib/sync_attr_with_auth0/adapters/active_record.rb +2 -6
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 74034877aaacaa02b288eed5519dc03fc80cc532e5af74805f0ea3b54d9c28ff
|
|
4
|
+
data.tar.gz: a17973158b0ba5a922a415bb9bf7bde219a6e8a747785fb4b4ed455b2de4d660
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e68abd1b794812316737cd2b8d9372f64a857baa328233f79a4b448eae817a05e631a385c315a10dd1a3189ed17a316e868043b65d0aba39c2799491a4a53ed
|
|
7
|
+
data.tar.gz: e25ba3a2b7256ac2915eb406eac60ea0a9ad81ea98c11bbb28366ec77d53fb79bd59156485b690d0496217e09ea3769d1834645401f9d981b084f06a0d18d82b
|
|
@@ -160,12 +160,8 @@ module SyncAttrWithAuth0
|
|
|
160
160
|
|
|
161
161
|
|
|
162
162
|
def auth0_app_metadata
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
'nickname' => auth0_user_name,
|
|
166
|
-
'given_name' => auth0_user_given_name,
|
|
167
|
-
'family_name' => auth0_user_family_name
|
|
168
|
-
}
|
|
163
|
+
# TODO: Source this from a separate attribute list.
|
|
164
|
+
return {}
|
|
169
165
|
end # auth0_app_metadata
|
|
170
166
|
|
|
171
167
|
|