aboutsummaryrefslogtreecommitdiff
path: root/src/web/controllers/category.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/controllers/category.py')
-rw-r--r--src/web/controllers/category.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/web/controllers/category.py b/src/web/controllers/category.py
new file mode 100644
index 00000000..fef5ca81
--- /dev/null
+++ b/src/web/controllers/category.py
@@ -0,0 +1,12 @@
+from .abstract import AbstractController
+from web.models import Category
+from .feed import FeedController
+
+
+class CategoryController(AbstractController):
+ _db_cls = Category
+
+ def delete(self, obj_id):
+ FeedController(self.user_id).update({'category_id': obj_id},
+ {'category_id': None})
+ return super().delete(obj_id)
bgstack15