From 6eb7ec0697acd7463cf7be770c57ca132af2f4e0 Mon Sep 17 00:00:00 2001 From: pablohashescobar <118773738+pablohashescobar@users.noreply.github.com> Date: Thu, 13 Apr 2023 00:34:23 +0530 Subject: [PATCH] fix: typo in url for bulk creating labels (#788) --- apiserver/plane/api/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apiserver/plane/api/urls.py b/apiserver/plane/api/urls.py index c927b8719..3c4b6bb14 100644 --- a/apiserver/plane/api/urls.py +++ b/apiserver/plane/api/urls.py @@ -759,7 +759,7 @@ urlpatterns = [ name="project-issue-labels", ), path( - "workspaces//projects//lk-create-labels/", + "workspaces//projects//bulk-create-labels/", BulkCreateIssueLabelsEndpoint.as_view(), name="project-bulk-labels", ),