fix: update post-queue hook names

v1.18.x
Julian Lam 4 years ago
parent 3b960c3b64
commit 0e58d2b866

@ -216,6 +216,11 @@ modsController.postQueue = async function (req, res, next) {
let postData = await getQueuedPosts(ids);
postData = postData.filter(p => p && (isAdminOrGlobalMod || moderatedCids.includes(String(p.category.cid))));
({ posts: postData } = await plugins.fireHook('filter:post-queue.get', {
posts: postData,
req: req,
}));
const pageCount = Math.max(1, Math.ceil(postData.length / postsPerPage));
const start = (page - 1) * postsPerPage;
const stop = start + postsPerPage - 1;

@ -57,7 +57,7 @@ module.exports = function (Posts) {
type: type,
data: data,
};
payload = await plugins.fireHook('filter:post.queue', payload);
payload = await plugins.fireHook('filter:post-queue.save', payload);
payload.data = JSON.stringify(data);
await db.sortedSetAdd('post:queue', now, id);

Loading…
Cancel
Save