blob: 70e8397367726a67cb20173052b26eeb261c7ff1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Use this hook to manipulate incoming or outgoing data.
// For more information on hooks see: http://docs.feathersjs.com/api/hooks.html
// eslint-disable-next-line no-unused-vars
module.exports = function (options = {}) {
return async context => {
const {data} = context;
if (!data.text) {
throw new Error('A post must have a text');
}
const user = context.params.user;
const text = context.data.text
.substring(0, 400);
context.data = {
text,
userId: user.id,
createdAt: new Date().getTime()
};
return context;
};
};
|