chore: single endpoint to create estimate and estimate points (#897)
This commit is contained in:
parent
e68a5382f9
commit
4dda4ec610
2 changed files with 34 additions and 8 deletions
|
|
@ -566,6 +566,11 @@ urlpatterns = [
|
|||
ProjectEstimatePointEndpoint.as_view(),
|
||||
name="project-estimate-points",
|
||||
),
|
||||
path(
|
||||
"workspaces/<str:slug>/projects/<uuid:project_id>/estimates/bulk-estimate-points/",
|
||||
BulkEstimatePointEndpoint.as_view(),
|
||||
name="bulk-create-estimate-points",
|
||||
),
|
||||
path(
|
||||
"workspaces/<str:slug>/projects/<uuid:project_id>/estimates/<uuid:estimate_id>/bulk-estimate-points/",
|
||||
BulkEstimatePointEndpoint.as_view(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue