aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2022-02-23 19:36:43 +0100
committerGravatar Mark <[email protected]>2022-02-23 18:07:14 -0800
commit9d1ea1667d501e515957909d5c261525ff6aeaa6 (patch)
tree01426d19b50cbbda35111c0d930a9f7168238742
parentMerge pull request #669 from python-discord/refine-constraint-check (diff)
Remove the admin app
This app is completely unused. I assume it was planned to be a space for customizing the Django admin, but we don't even have it in `INSTALLED_APPS`, nor our URLs.
-rw-r--r--pydis_site/apps/admin/__init__.py0
-rw-r--r--pydis_site/apps/admin/urls.py8
2 files changed, 0 insertions, 8 deletions
diff --git a/pydis_site/apps/admin/__init__.py b/pydis_site/apps/admin/__init__.py
deleted file mode 100644
index e69de29b..00000000
--- a/pydis_site/apps/admin/__init__.py
+++ /dev/null
diff --git a/pydis_site/apps/admin/urls.py b/pydis_site/apps/admin/urls.py
deleted file mode 100644
index a4f3e517..00000000
--- a/pydis_site/apps/admin/urls.py
+++ /dev/null
@@ -1,8 +0,0 @@
-from django.contrib import admin
-from django.urls import path
-
-
-app_name = 'admin'
-urlpatterns = (
- path('', admin.site.urls),
-)