aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/resources/urls.py
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-10-30 17:43:13 +0200
committerGravatar ks129 <[email protected]>2020-10-30 17:43:13 +0200
commit3fa3854eb192466ca59acb577bfe135b53c2da11 (patch)
treeaf5aa98d8d521f21f25c45528c89941ac23e77aa /pydis_site/apps/resources/urls.py
parentCover fetching article GitHub information with tests (diff)
parentMerge pull request #395 from ks129/resources-home (diff)
Merge remote-tracking branch 'up/dewikification' into guides-app
Diffstat (limited to 'pydis_site/apps/resources/urls.py')
-rw-r--r--pydis_site/apps/resources/urls.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/pydis_site/apps/resources/urls.py b/pydis_site/apps/resources/urls.py
new file mode 100644
index 00000000..c91e306e
--- /dev/null
+++ b/pydis_site/apps/resources/urls.py
@@ -0,0 +1,8 @@
+from django.urls import path
+
+from pydis_site.apps.resources import views
+
+app_name = "resources"
+urlpatterns = [
+ path("", views.ResourcesView.as_view(), name="index"),
+]