orator-session
Advanced tools
Comparing version 1.0.16 to 1.0.17
{ | ||
"name": "orator-session", | ||
"version": "1.0.16", | ||
"version": "1.0.17", | ||
"description": "Session state and authentication manager for Orator Restful web API server.", | ||
@@ -5,0 +5,0 @@ "main": "source/Orator-Session.js", |
@@ -23,5 +23,5 @@ /** | ||
_Settings.SessionTempTokenTimeout = 60; | ||
if (!_Settings.SessionStrategy && //TODO: improve this settings fallback | ||
_Settings.SessionStrategy !== 'Memcached' && | ||
_Settings.SessionStrategy !== 'InMemory') | ||
if (!_Settings.SessionStrategy || //TODO: improve this settings fallback | ||
(_Settings.SessionStrategy !== 'Memcached' && | ||
_Settings.SessionStrategy !== 'InMemory')) | ||
_Settings.SessionStrategy = 'Memcached'; | ||
@@ -28,0 +28,0 @@ |
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
38262