From 79002e1eaf96e9cfcd2993715b67cf3a61e02fb3 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Thu, 24 Nov 2022 22:31:45 -0700 Subject: Add initial delete UI --- takahe/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'takahe') diff --git a/takahe/urls.py b/takahe/urls.py index 614ec3b..ddffa68 100644 --- a/takahe/urls.py +++ b/takahe/urls.py @@ -94,6 +94,7 @@ urlpatterns = [ path("@/posts//unlike/", posts.Like.as_view(undo=True)), path("@/posts//boost/", posts.Boost.as_view()), path("@/posts//unboost/", posts.Boost.as_view(undo=True)), + path("@/posts//delete/", posts.Delete.as_view()), # Authentication path("auth/login/", auth.Login.as_view(), name="login"), path("auth/logout/", auth.Logout.as_view(), name="logout"), -- cgit v1.2.3