diff options
author | 2022-01-27 10:16:52 +0100 | |
---|---|---|
committer | 2022-01-27 10:16:52 +0100 | |
commit | 4ee8d527a2cf0ac7e4fd977ffd29e560b3cd48cb (patch) | |
tree | 86037770cbcd15e8055f8469166d7139dbbf8d53 /pydis_site/apps/resources/urls.py | |
parent | Fix broken yaml in kivy.yaml. (diff) |
Greatly simplify the backend.
Here we're getting rid of all filtering and search functionality
on the backend. We'll be handling this on the client-side from now on.
Diffstat (limited to 'pydis_site/apps/resources/urls.py')
-rw-r--r-- | pydis_site/apps/resources/urls.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pydis_site/apps/resources/urls.py b/pydis_site/apps/resources/urls.py index c8d441df..3db26417 100644 --- a/pydis_site/apps/resources/urls.py +++ b/pydis_site/apps/resources/urls.py @@ -4,6 +4,5 @@ from pydis_site.apps.resources import views app_name = "resources" urlpatterns = [ - path("", views.resources.resource_view, name="index"), - path("list/", views.ResourcesListView.as_view(), name="resources") + path("", views.resources.ResourceView.as_view(), name="index"), ] |