aboutsummaryrefslogtreecommitdiff
path: root/web/controllers/user.py
diff options
context:
space:
mode:
Diffstat (limited to 'web/controllers/user.py')
-rw-r--r--web/controllers/user.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/web/controllers/user.py b/web/controllers/user.py
deleted file mode 100644
index 3f96b185..00000000
--- a/web/controllers/user.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from .abstract import AbstractController
-from web.models import User
-
-
-class UserController(AbstractController):
- _db_cls = User
- _user_id_key = 'id'
bgstack15