harcon-radiation
Advanced tools
Comparing version 0.6.0 to 0.6.1
@@ -6,3 +6,3 @@ var ES6 = require('./ES6Fixer'); | ||
var VERSION = exports.VERSION = '0.6.0'; | ||
var VERSION = exports.VERSION = '0.6.1'; | ||
function extend(obj, extension){ | ||
@@ -155,5 +155,7 @@ for(var key in extension){ | ||
self.ignite( clerobee.generate(), { request: request, content: content }, firestarter.division, firestarter.context + '.' + service, content.params || content.parameters || [], function(err, res){ | ||
if( self.inceptors[ path.context + path.path ] ) | ||
self.inceptors[ path.context + path.path ]( request, content, err, res ); | ||
callback( err, res ); | ||
var interceptor = self.inceptors[ path.context + path.path ]; | ||
if( interceptor ) | ||
interceptor( request, content, err, res, callback ); | ||
else | ||
callback( err, res ); | ||
} ); | ||
@@ -160,0 +162,0 @@ }, null, security ); |
{ | ||
"name": "harcon-radiation", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"description": "REST and Websocket plugin for harcon", | ||
@@ -54,3 +54,3 @@ "keywords": [ | ||
}, | ||
"_id": "harcon-radiation@0.6.0" | ||
"_id": "harcon-radiation@0.6.1" | ||
} |
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
28968
471