Skip to content

Commit

Permalink
Fix budget min-max
Browse files Browse the repository at this point in the history
  • Loading branch information
mmahdigh committed Oct 30, 2024
1 parent 489d69a commit 489cc2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/flow/dto/bodies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ export class IsPositiveNumberArray implements ValidatorConstraintInterface {

export class BudgetDto {
@IsPositive()
@Min(2_000_000)
@Max(8_000_000)
@Min(1_100_000)
@Max(3_500_000)
@IsDefined()
@ApiProperty()
budget: number;
Expand Down

0 comments on commit 489cc2b

Please sign in to comment.