sync: master branch changes to preview

This commit is contained in:
sriramveeraghanta 2026-03-25 13:21:43 +05:30
commit 6e033f9fdb
22 changed files with 77 additions and 31 deletions

View file

@ -1,6 +1,6 @@
{
"name": "admin",
"version": "1.2.0",
"version": "1.2.3",
"private": true,
"description": "Admin UI for Plane",
"license": "AGPL-3.0",

View file

@ -1,7 +1,7 @@
{
"name": "plane-api",
"version": "1.2.0",
"license": "AGPL-3.0",
"version": "1.2.3",
"private": true,
"description": "API server powering Plane's backend"
"description": "API server powering Plane's backend",
"license": "AGPL-3.0"
}

View file

@ -64,7 +64,10 @@ class IssueAttachmentEndpoint(BaseAPIView):
pk=pk, workspace__slug=slug, project_id=project_id, issue_id=issue_id
).first()
if not issue_attachment:
return Response(status=status.HTTP_404_NOT_FOUND)
return Response(
{"error": "Issue attachment not found."},
status=status.HTTP_404_NOT_FOUND,
)
issue_attachment.asset.delete(save=False)
issue_attachment.delete()
issue_activity.delay(

View file

@ -1,6 +1,6 @@
{
"name": "live",
"version": "1.2.0",
"version": "1.2.3",
"private": true,
"description": "A realtime collaborative server powers Plane's rich text editor",
"license": "AGPL-3.0",

View file

@ -1,6 +1,6 @@
{
"name": "space",
"version": "1.2.0",
"version": "1.2.3",
"private": true,
"license": "AGPL-3.0",
"type": "module",

View file

@ -1,6 +1,6 @@
{
"name": "web",
"version": "1.2.0",
"version": "1.2.3",
"private": true,
"license": "AGPL-3.0",
"type": "module",