node-red-contrib-securedhttp
Advanced tools
Comparing version 1.0.7 to 1.0.8
{ | ||
"name": "node-red-contrib-securedhttp", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "Node-RED node to create secured http endpoint", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
@@ -275,3 +275,9 @@ /** | ||
// kchen - modification 7/5/2017 | ||
node.userDetails.name = node.userDetails.email = decoded.userAuthentication.name; | ||
node.userDetails.name = decoded.userAuthentication.name; | ||
node.userDetails.email = decoded.details.decodedDetails.userEmail; | ||
node.userDetails.userLasterName = decoded.details.decodedDetails.userLasterName; | ||
node.userDetails.userFirstName = decoded.details.decodedDetails.userFirstName; | ||
node.userDetails.entityName = decoded.details.decodedDetails.entityName; | ||
node.userDetails.entityId = decoded.details.decodedDetails.entityId; | ||
node.userDetails.userId = decoded.details.decodedDetails.userId; | ||
node.userDetails.authorities = decoded.authorities; | ||
@@ -278,0 +284,0 @@ node.userDetails.token = "bearer " + encrypted; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29617
388