edit order
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-07-18 20:56:29 +03:30
parent 01ae67248a
commit 17223ced06
11 changed files with 801 additions and 54 deletions
@@ -0,0 +1,9 @@
import { ApiProperty } from '@nestjs/swagger';
import { IsNumber, Min } from 'class-validator';
export class AdminUpdateOrderItemDto {
@ApiProperty({ description: 'New quantity', minimum: 1 })
@IsNumber()
@Min(1)
quantity: number;
}