Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions nix/overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,8 @@ in
dj-database-url
django-allauth
django-debug-toolbar
django-filter
django-types
django
djangorestframework
pytest-socket
ipython
psycopg2
Expand Down
6 changes: 0 additions & 6 deletions src/project/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,6 @@ class AppSettings(BaseModel):
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
"django_filters",
"debug_toolbar",
# AllAuth config
"allauth",
Expand All @@ -355,7 +354,6 @@ class AppSettings(BaseModel):
"pgtrigger",
"pghistory",
"pghistory.admin",
"rest_framework",
"shared",
"webview",
]
Expand Down Expand Up @@ -423,10 +421,6 @@ class AppSettings(BaseModel):
]


REST_FRAMEWORK = {
"DEFAULT_FILTER_BACKENDS": ["django_filters.rest_framework.DjangoFilterBackend"]
}

SITE_ID = 1

# Disable regular signup but allow GitHub auth
Expand Down
1 change: 0 additions & 1 deletion src/project/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

urlpatterns = [
path("", include("webview.urls")),
path("api/", include("shared.urls")),
path("admin/", admin.site.urls),
path("accounts/", include("allauth.urls")),
path("debug/", include("debug_toolbar.urls")),
Expand Down
11 changes: 0 additions & 11 deletions src/shared/urls.py

This file was deleted.

39 changes: 0 additions & 39 deletions src/shared/views.py

This file was deleted.