From 6844c828cac0770a6e785f6523d920eb4ffb389c Mon Sep 17 00:00:00 2001 From: psychobunny Date: Thu, 18 Sep 2014 17:05:22 -0400 Subject: [PATCH] added a hook I didn't end up needing, but here it is anyway `filter:posts.modifyUserInfo` --- src/posts.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/posts.js b/src/posts.js index 06216f0d07..a31661066d 100644 --- a/src/posts.js +++ b/src/posts.js @@ -211,7 +211,8 @@ var async = require('async'), } userData.signature = results.signature; userData.custom_profile_info = results.customProfileInfo.profile; - next(null, userData); + + plugins.fireHook('filter:posts.modifyUserInfo', userData, next); }); }, callback); });