From f1a3815ddc69219d186fe4a4385bdae41bf01a6a Mon Sep 17 00:00:00 2001 From: barisusakli Date: Tue, 20 Jan 2015 17:42:05 -0500 Subject: [PATCH] action:user.updateProfile --- src/user/profile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/user/profile.js b/src/user/profile.js index b901bdb066..13f29591c0 100644 --- a/src/user/profile.js +++ b/src/user/profile.js @@ -96,7 +96,7 @@ module.exports = function(User) { if (err) { return callback(err); } - + plugins.fireHook('action:user.updateProfile', {data: data, uid: uid}); User.getUserFields(uid, ['email', 'userslug', 'picture', 'gravatarpicture'], callback); }); });