backend-plus 2.5.2-betha.30 → 2.5.2-betha.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/backend-plus.js +4 -4
- package/package.json +1 -1
package/lib/backend-plus.js
CHANGED
|
@@ -2149,12 +2149,12 @@ AppBackend.prototype.addUnloggedServices = function addUnloggedServices(mainApp,
|
|
|
2149
2149
|
})
|
|
2150
2150
|
}
|
|
2151
2151
|
})
|
|
2152
|
+
promise.catch(err=>{
|
|
2153
|
+
console.log('error in /new-password');
|
|
2154
|
+
console.log(err);
|
|
2155
|
+
})
|
|
2152
2156
|
}
|
|
2153
2157
|
res.redirect(Path.posix.join(baseUrl, be.config.login.forget?.urlPathOk+'?result'+resultCode));
|
|
2154
|
-
promise.catch(err=>{
|
|
2155
|
-
console.log('error in /new-password');
|
|
2156
|
-
console.log(err);
|
|
2157
|
-
})
|
|
2158
2158
|
})
|
|
2159
2159
|
mainApp.get(Path.posix.join(baseUrl,'/new-pass'), function(req,res,next){
|
|
2160
2160
|
var resultCode;
|
package/package.json
CHANGED