mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
chore: individual endpoint for estimate points
This commit is contained in:
parent
b8a8c82d5f
commit
d3e579f33c
@ -4,7 +4,7 @@ from django.urls import path
|
|||||||
from plane.app.views import (
|
from plane.app.views import (
|
||||||
ProjectEstimatePointEndpoint,
|
ProjectEstimatePointEndpoint,
|
||||||
BulkEstimatePointEndpoint,
|
BulkEstimatePointEndpoint,
|
||||||
DeleteEstimatePoint,
|
EstimatePointEndpoint,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -37,7 +37,21 @@ urlpatterns = [
|
|||||||
),
|
),
|
||||||
path(
|
path(
|
||||||
"workspaces/<str:slug>/projects/<uuid:project_id>/estimates/<uuid:estimate_id>/estimate-point/<estimate_point_id>/",
|
"workspaces/<str:slug>/projects/<uuid:project_id>/estimates/<uuid:estimate_id>/estimate-point/<estimate_point_id>/",
|
||||||
DeleteEstimatePoint.as_view({"patch": "partial_update"}),
|
EstimatePointEndpoint.as_view(
|
||||||
name="delete-estimate-points",
|
{
|
||||||
|
"post": "create",
|
||||||
|
}
|
||||||
|
),
|
||||||
|
name="estimate-points",
|
||||||
|
),
|
||||||
|
path(
|
||||||
|
"workspaces/<str:slug>/projects/<uuid:project_id>/estimates/<uuid:estimate_id>/estimate-point/<estimate_point_id>/",
|
||||||
|
EstimatePointEndpoint.as_view(
|
||||||
|
{
|
||||||
|
"patch": "partial_update",
|
||||||
|
"delete": "destroy",
|
||||||
|
}
|
||||||
|
),
|
||||||
|
name="estimate-points",
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
@ -189,7 +189,7 @@ from .external.base import (
|
|||||||
from .estimate.base import (
|
from .estimate.base import (
|
||||||
ProjectEstimatePointEndpoint,
|
ProjectEstimatePointEndpoint,
|
||||||
BulkEstimatePointEndpoint,
|
BulkEstimatePointEndpoint,
|
||||||
DeleteEstimatePoint,
|
EstimatePointEndpoint,
|
||||||
)
|
)
|
||||||
|
|
||||||
from .inbox.base import InboxViewSet, InboxIssueViewSet
|
from .inbox.base import InboxViewSet, InboxIssueViewSet
|
||||||
|
@ -62,9 +62,10 @@ class BulkEstimatePointEndpoint(BaseViewSet):
|
|||||||
path="/api/workspaces/:slug/estimates/", url_params=True, user=False
|
path="/api/workspaces/:slug/estimates/", url_params=True, user=False
|
||||||
)
|
)
|
||||||
def create(self, request, slug, project_id):
|
def create(self, request, slug, project_id):
|
||||||
estimate_name = generate_random_name()
|
estimate_name = request.data.get("name", generate_random_name())
|
||||||
|
last_used = request.data.get("last_used", False)
|
||||||
estimate = Estimate.objects.create(
|
estimate = Estimate.objects.create(
|
||||||
name=estimate_name, project_id=project_id
|
name=estimate_name, project_id=project_id, last_used=last_used
|
||||||
)
|
)
|
||||||
|
|
||||||
estimate_points = request.data.get("estimate_points", [])
|
estimate_points = request.data.get("estimate_points", [])
|
||||||
@ -174,15 +175,52 @@ class BulkEstimatePointEndpoint(BaseViewSet):
|
|||||||
return Response(status=status.HTTP_204_NO_CONTENT)
|
return Response(status=status.HTTP_204_NO_CONTENT)
|
||||||
|
|
||||||
|
|
||||||
class DeleteEstimatePoint(BaseViewSet):
|
class EstimatePointEndpoint(BaseViewSet):
|
||||||
permission_classes = [
|
permission_classes = [
|
||||||
ProjectEntityPermission,
|
ProjectEntityPermission,
|
||||||
]
|
]
|
||||||
|
|
||||||
def partial_update(
|
def create(self, request, slug, project_id, estimate_id):
|
||||||
|
# TODO: add a key validation if the same key already exists
|
||||||
|
if not request.data.get("key") or not request.data.get("value"):
|
||||||
|
return Response(
|
||||||
|
{"error": "Key and value are required"},
|
||||||
|
status=status.HTTP_400_BAD_REQUEST,
|
||||||
|
)
|
||||||
|
key = request.data.get("key", 0)
|
||||||
|
value = request.data.get("value", "")
|
||||||
|
estimate_point = EstimatePoint.objects.get(
|
||||||
|
estimate_id=estimate_id,
|
||||||
|
project_id=project_id,
|
||||||
|
workspace__slug=slug,
|
||||||
|
key=key,
|
||||||
|
value=value,
|
||||||
|
)
|
||||||
|
serializer = EstimatePointSerializer(estimate_point).data
|
||||||
|
return Response(serializer, status=status.HTTP_200_OK)
|
||||||
|
|
||||||
|
def partial_update(self, request, slug, project_id, estimate_id, estimate_point_id):
|
||||||
|
# TODO: add a key validation if the same key already exists
|
||||||
|
estimate_point = EstimatePoint.objects.get(
|
||||||
|
pk=estimate_point_id,
|
||||||
|
estimate_id=estimate_id,
|
||||||
|
project_id=project_id,
|
||||||
|
workspace__slug=slug,
|
||||||
|
)
|
||||||
|
serializer = EstimatePointSerializer(
|
||||||
|
estimate_point, data=request.data, partial=True
|
||||||
|
)
|
||||||
|
if not serializer.is_valid():
|
||||||
|
return Response(
|
||||||
|
serializer.errors, status=status.HTTP_400_BAD_REQUEST
|
||||||
|
)
|
||||||
|
serializer.save()
|
||||||
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
||||||
|
|
||||||
|
def destroy(
|
||||||
self, request, slug, project_id, estimate_id, estimate_point_id
|
self, request, slug, project_id, estimate_id, estimate_point_id
|
||||||
):
|
):
|
||||||
new_estimate_id = request.data.get("new_estimate_id", None)
|
new_estimate_id = request.GET.get("new_estimate_id", None)
|
||||||
estimate_points = EstimatePoint.objects.filter(
|
estimate_points = EstimatePoint.objects.filter(
|
||||||
estimate_id=estimate_id,
|
estimate_id=estimate_id,
|
||||||
project_id=project_id,
|
project_id=project_id,
|
||||||
|
Loading…
Reference in New Issue
Block a user