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, 0 insertions, 12 deletions
diff --git a/src/web/controllers/category.py b/src/web/controllers/category.py
deleted file mode 100644
index fef5ca81..00000000
--- a/src/web/controllers/category.py
+++ /dev/null
@@ -1,12 +0,0 @@
-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