mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 04:16:37 -04:00
23 lines
No EOL
666 B
JavaScript
23 lines
No EOL
666 B
JavaScript
Meteor.methods({
|
|
"categories.deleteById": function (categoryId) {
|
|
|
|
check(categoryId, String);
|
|
|
|
if (Users.is.admin(this.userId)) {
|
|
|
|
// delete category
|
|
Categories.remove(categoryId);
|
|
|
|
// find any direct children of this category and make them root categories
|
|
Categories.find({parentId: categoryId}).forEach(function (category) {
|
|
Categories.update(category._id, {$unset: {parentId: ""}});
|
|
});
|
|
|
|
// find any posts with this category and remove it
|
|
var postsUpdated = Posts.update({categories: {$in: [categoryId]}}, {$pull: {categories: categoryId}}, {multi: true});
|
|
|
|
return postsUpdated;
|
|
|
|
}
|
|
}
|
|
}); |