mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-07-05 09:29:24 +02:00
add postData to action:post.delete, closes #5360
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user