sails-permissions
Advanced tools
Comparing version 1.1.2 to 1.1.3
@@ -103,4 +103,3 @@ var permissionPolicies = [ | ||
model: 'User', | ||
index: true, | ||
notNull: true | ||
index: true | ||
}, | ||
@@ -107,0 +106,0 @@ owner: { |
@@ -26,3 +26,6 @@ var _ = require('lodash'); | ||
}) | ||
.catch(next); | ||
.catch(function (e) { | ||
sails.log.error(e); | ||
next(e); | ||
}); | ||
}, | ||
@@ -44,3 +47,6 @@ function attachDefaultRole (user, next) { | ||
}) | ||
.catch(next) | ||
.catch(function (e) { | ||
sails.log.error(e); | ||
next(e); | ||
}) | ||
); | ||
@@ -47,0 +53,0 @@ } |
{ | ||
"name": "sails-permissions", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "Comprehensive user permissions and entitlements system for sails.js and Waterline. Supports user authentication with passport.js, role-based permissioning, object ownership, and row-level security.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
87202
2279