aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/hooks/process-post.js
diff options
context:
space:
mode:
authorMarvin Borner2018-10-30 20:49:12 +0100
committerMarvin Borner2018-10-30 20:49:12 +0100
commitee05d577636b80ff58906b9de44f147484fd459e (patch)
treefac1e04cd032c0f17470a1de68d521524d11ec92 /src/hooks/process-post.js
parentf585fea9f15958260e6af29feb1e9cc72bde64e3 (diff)
Fixed user id duplicated outputHEADmaster
Diffstat (limited to 'src/hooks/process-post.js')
-rw-r--r--src/hooks/process-post.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/hooks/process-post.js b/src/hooks/process-post.js
index 553bb59..70e8397 100644
--- a/src/hooks/process-post.js
+++ b/src/hooks/process-post.js
@@ -6,28 +6,20 @@ module.exports = function (options = {}) {
return async context => {
const {data} = context;
- // Throw an error if we didn't get a text
if (!data.text) {
throw new Error('A post must have a text');
}
- // The authenticated user
const user = context.params.user;
- // The actual message text
const text = context.data.text
- // Posts can't be longer than 400 characters
.substring(0, 400);
- // Override the original data (so that people can't submit additional stuff)
context.data = {
text,
- // Set the user id
userId: user.id,
- // Add the current date
createdAt: new Date().getTime()
};
- // Best practise, hooks should always return the context
return context;
};
};