diff --git a/src/categories/create.js b/src/categories/create.js index 46aae0a097..79626b8600 100644 --- a/src/categories/create.js +++ b/src/categories/create.js @@ -150,6 +150,11 @@ module.exports = function (Categories) { if (copyParent) { destination.parentCid = source.parentCid || 0; } + await plugins.hooks.fire('filter:categories.copySettingsFrom', { + source: source, + destination: destination, + copyParent: copyParent, + }); await db.setObject('category:' + toCid, destination);