Skip to content

Commit

Permalink
redirect root to browse
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume committed Feb 16, 2021
1 parent b445a67 commit cc45e54
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mpcontribs-portal/mpcontribs/portal/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
app_name = "mpcontribs_portal"
urlpatterns = [
# public
url(r"^$", views.index, name="index"),
#url(r"^$", views.index, name="index"),
url(r"^$", RedirectView.as_view(pattern_name="browse")),
url(r"^work/?$", views.work, name="work"),
url(r"^healthcheck/?$", views.healthcheck, name="healthcheck"),
url(
Expand Down

0 comments on commit cc45e54

Please sign in to comment.