Hotfix before deadline

This commit is contained in:
ITQ
2024-03-04 23:21:51 +03:00
parent 9a4b18b4c1
commit 79f0aaaaa6
9 changed files with 40 additions and 29 deletions
+2 -2
View File
@@ -4,12 +4,12 @@ import api.posts.views
urlpatterns = [
path(
"/create",
"/new",
api.posts.views.CreatePostApiView.as_view(),
name="create-post",
),
path(
"/<str:post_id>",
"/<uuid:post_id>",
api.posts.views.PostDetailApiView.as_view(),
name="post-detail",
),