from django.urls import path from plane.app.views import ( ProjectEstimatePointEndpoint, BulkEstimatePointEndpoint, EstimatePointEndpoint, ) urlpatterns = [ path( "workspaces//projects//project-estimates/", ProjectEstimatePointEndpoint.as_view(), name="project-estimate-points", ), path( "workspaces//projects//estimates/", BulkEstimatePointEndpoint.as_view({"get": "list", "post": "create"}), name="bulk-create-estimate-points", ), path( "workspaces//projects//estimates//", BulkEstimatePointEndpoint.as_view({"get": "retrieve", "patch": "partial_update", "delete": "destroy"}), name="bulk-create-estimate-points", ), path( "workspaces//projects//estimates//estimate-points/", EstimatePointEndpoint.as_view({"post": "create"}), name="estimate-points", ), path( "workspaces//projects//estimates//estimate-points//", EstimatePointEndpoint.as_view({"patch": "partial_update", "delete": "destroy"}), name="estimate-points", ), ]