feat: make update price public

pull/157/head
shancheas 2025-06-11 16:31:15 +07:00
parent 737575176e
commit 34d8882ec3
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ export class ItemDataController {
return await this.orchestrator.create(data); return await this.orchestrator.create(data);
} }
@Public(true)
@Post('update-price') @Post('update-price')
async updatePrice(@Body() body: UpdateItemPriceDto): Promise<any> { async updatePrice(@Body() body: UpdateItemPriceDto): Promise<any> {
return await this.orchestrator.updatePrice(body); return await this.orchestrator.updatePrice(body);