add postData to action:post.delete, closes #5360

This commit is contained in:
barisusakli
2017-01-12 14:32:28 +03:00
parent 274448426d
commit 938022a0f7

View File

@@ -29,6 +29,7 @@ module.exports = function (Posts) {
topics.getTopicFields(_post.tid, ['tid', 'cid', 'pinned'], next);
},
function (topicData, next) {
postData.cid = topicData.cid;
async.parallel([
function (next) {
updateTopicTimestamp(topicData, next);
@@ -42,7 +43,7 @@ module.exports = function (Posts) {
], next);
},
function (results, next) {
plugins.fireHook('action:post.delete', {pid: pid, uid: uid});
plugins.fireHook('action:post.delete', {post: _.clone(postData), uid: uid});
next(null, postData);
}
], callback);