@adaptivestone/framework 3.3.0 → 3.4.0
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/CHANGELOG.md +4 -0
- package/modules/AbstractController.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -210,6 +210,7 @@ class AbstractController extends Base {
|
|
|
210
210
|
try {
|
|
211
211
|
await routeObject.request.validate(bodyAndQuery, {
|
|
212
212
|
abortEarly: controllerValidationAbortEarly,
|
|
213
|
+
req,
|
|
213
214
|
});
|
|
214
215
|
} catch (e) {
|
|
215
216
|
let { errors } = e;
|
|
@@ -243,6 +244,7 @@ class AbstractController extends Base {
|
|
|
243
244
|
bodyAndQuery,
|
|
244
245
|
{
|
|
245
246
|
stripUnknown: true,
|
|
247
|
+
req,
|
|
246
248
|
},
|
|
247
249
|
);
|
|
248
250
|
}
|