aboutsummaryrefslogtreecommitdiff
path: root/services/users/admin.py
diff options
context:
space:
mode:
authorBobby <[email protected]>2024-12-15 19:11:48 -0500
committerBobby <[email protected]>2024-12-15 19:11:48 -0500
commit8bb529d5eefec11360e7aacb287120d6427793bd (patch)
tree356d0690288513eee99abedafd3cf0929a3f27a3 /services/users/admin.py
parent12c92bf4d74f3717b1eafe1737e671a2b8bda02e (diff)
downloadthatcomputerscientist-8bb529d5eefec11360e7aacb287120d6427793bd.tar.xz
thatcomputerscientist-8bb529d5eefec11360e7aacb287120d6427793bd.zip
user stats
Diffstat (limited to 'services/users/admin.py')
-rw-r--r--services/users/admin.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/services/users/admin.py b/services/users/admin.py
new file mode 100644
index 00000000..0f1d5fdb
--- /dev/null
+++ b/services/users/admin.py
@@ -0,0 +1,7 @@
+from django.contrib import admin
+
+# Register your models here.
+from .models import TokenStore, UserProfile
+
+admin.site.register(UserProfile)
+admin.site.register(TokenStore)