feat: bulk create endpoint for estimate points (#708)

* feat: bulk create endpoint for estimate points

* dev: remove integrity logic and update url
This commit is contained in:
pablohashescobar 2023-04-06 13:59:17 +05:30 committed by GitHub
parent 105428894f
commit 6a579f85ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 55 additions and 2 deletions

View file

@ -27,7 +27,6 @@ class EstimatePoint(ProjectBaseModel):
"db.Estimate",
on_delete=models.CASCADE,
related_name="points",
limit_choices_to={"estimate__points__count__lt": 10},
)
key = models.IntegerField(
default=0, validators=[MinValueValidator(0), MaxValueValidator(7)]