loopback-component-oauth2
Advanced tools
Comparing version 2.0.0-rc2 to 2.0.0-rc3
@@ -1,4 +0,12 @@ | ||
2015-05-17, Version 2.0.0-rc2 | ||
2015-05-18, Version 2.0.0-rc3 | ||
============================= | ||
* Fixed a minor bug where comparison of allowedScopes and tokenScopes is incorrect (Roy Klopper) | ||
2015-05-16, Version 2.0.0-rc2 | ||
============================= | ||
* 2.0.0-rc2 (Raymond Feng) | ||
* Fix token deletion (Raymond Feng) | ||
@@ -5,0 +13,0 @@ |
@@ -73,3 +73,3 @@ var jwt = require('jws'); | ||
for (var i = 0, n = allowedScopes.length; i < n; i++) { | ||
if (allowedScopes.indexOf(tokenScopes[i]) !== -1) { | ||
if (tokenScopes.indexOf(allowedScopes[i]) !== -1) { | ||
return true; | ||
@@ -76,0 +76,0 @@ } |
{ | ||
"name": "loopback-component-oauth2", | ||
"version": "2.0.0-rc2", | ||
"version": "2.0.0-rc3", | ||
"description": "OAuth 2.0 provider for LoopBack", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
466295