Merge pull request #7 from Getable/require-payload-on-put
Fix: PUT requires a payload to work
This commit is contained in:
commit
c0cb2c44e0
@ -202,7 +202,11 @@ export const update = (server, model) => {
|
|||||||
reply(instance);
|
reply(instance);
|
||||||
},
|
},
|
||||||
|
|
||||||
config: defaultConfig,
|
config: _.defaultsDeep({
|
||||||
|
validate: {
|
||||||
|
payload: joi.object().required(),
|
||||||
|
},
|
||||||
|
}, defaultConfig),
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user