aboutsummaryrefslogtreecommitdiff
path: root/dev_status/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'dev_status/urls.py')
-rw-r--r--dev_status/urls.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/dev_status/urls.py b/dev_status/urls.py
index c9bcf35a..acbd96dc 100644
--- a/dev_status/urls.py
+++ b/dev_status/urls.py
@@ -4,8 +4,7 @@ from . import views
app_name = 'dev_status'
urlpatterns = [
- path('', views.home, name='home'),
- path('tree/', views.tree, name='roottree'),
- path('tree/<path:path>', views.tree, name='tree'),
- path('raw/<path:path>', views.raw, name='raw'),
+ path('<str:r>', views.home, name='repo'),
+ path('<str:r>/<path:p>', views.home, name='repo-path'),
+ path('', RedirectView.as_view(url='thatcomputerscientist'))
]