Skip to content

Commit

Permalink
Remove unused django.contrib admin, sessions and messages middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
bwbroersma committed Dec 5, 2024
1 parent 86480ae commit 87d610d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 19 deletions.
13 changes: 0 additions & 13 deletions internetnl/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,6 @@
# # and the option to Preserve the Host are set by your proxy.
DJANGO_IS_PROXIED = get_boolean_env("DJANGO_IS_PROXIED", False)
ALLOWED_HOSTS = split_csv_trim(getenv("ALLOWED_HOSTS", ".internet.nl, internet.nl"))
ADMIN_NAME = getenv("ADMIN_NAME", "Administrator")
ADMIN_EMAIL = getenv("ADMIN_EMAIL", "Administrator")
SERVER_EMAIL = getenv("SERVER_EMAIL", "[email protected]")
INTERNAL_IPS = split_csv_trim(getenv("INTERNAL_IPS", ""))
TIME_ZONE = getenv("TIME_ZONE", "UTC")

Expand Down Expand Up @@ -135,11 +132,8 @@
ALLOWED_HOSTS = ALLOWED_HOSTS + [IPV6_TEST_ADDR, f"[{IPV6_TEST_ADDR}]"]

INSTALLED_APPS = [
"django.contrib.admin",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
"django_bleach",
"markdown_deux",
Expand All @@ -156,13 +150,11 @@
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
"django.contrib.auth.context_processors.auth",
"django.template.context_processors.debug",
"django.template.context_processors.i18n",
"django.template.context_processors.media",
"django.template.context_processors.static",
"django.template.context_processors.tz",
"django.contrib.messages.context_processors.messages",
"django.template.context_processors.request",
],
"libraries": {"translate": "interface.templatetags.translate"},
Expand All @@ -178,15 +170,10 @@
"django_statsd.middleware.GraphiteRequestTimingMiddleware",
"django_statsd.middleware.GraphiteMiddleware",
"django_hosts.middleware.HostsRequestMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"django.middleware.common.CommonMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
"django_hosts.middleware.HostsResponseMiddleware",
"internetnl.custom_middlewares.ActivateTranslationMiddleware",
]

ADMINS = ((ADMIN_NAME, ADMIN_EMAIL),)
ROOT_URLCONF = "internetnl.urls"
ROOT_HOSTCONF = "internetnl.hosts"
DEFAULT_HOST = "www"
Expand Down
6 changes: 0 additions & 6 deletions internetnl/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,8 @@
# SPDX-License-Identifier: Apache-2.0
from django.conf import settings
from django.urls import include, path, re_path
from django.contrib import admin

urlpatterns = [
path("", include("interface.urls")),
]
handler404 = "interface.views.page404"

if settings.DEBUG is True:
urlpatterns += [
re_path(r"^admin/", admin.site.urls),
]

0 comments on commit 87d610d

Please sign in to comment.