From eb9569adee6943e38283e505fa010c007ead0ac7 Mon Sep 17 00:00:00 2001 From: Andres Date: Thu, 3 Aug 2023 18:37:24 +0200 Subject: [PATCH] fix endpoint description --- src/modules/cards/cards.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/cards/cards.controller.ts b/src/modules/cards/cards.controller.ts index 324f005..41c50bd 100644 --- a/src/modules/cards/cards.controller.ts +++ b/src/modules/cards/cards.controller.ts @@ -45,7 +45,7 @@ export class CardsController { } @ApiConsumes('multipart/form-data') - @ApiOperation({ summary: 'Get card by id', description: 'Get card by id' }) + @ApiOperation({ summary: 'Update card', description: 'Update partial card data' }) @ApiUnauthorizedResponse({ description: 'Unauthorized' }) @ApiNotFoundResponse({ description: 'Card not found' }) @UseGuards(JwtAuthGuard)