Undo URL change that got committed WAY too early

This commit is contained in:
MatthiasSaihttam 2021-10-12 09:11:43 -04:00
parent de79cba49d
commit 07284eb087
1 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,6 @@ from whispermaphone import settings
urlpatterns = [
path("", views.index, name="index"),
path("about", views.about, name="about"),
path("post", views.post_or_edit, name="post"),
path("post", views.post, name="post"),
path("feed", MainFeed()),
path("edit", views.post_or_edit, name="edit"),
] + (static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) if settings.DEBUG else [])