Created
August 25, 2020 13:52
-
-
Save nmchenry01/b2f172951469602a42678eeea30b1160 to your computer and use it in GitHub Desktop.
API operations decorators "NestJS with Swagger"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @ApiOkResponse({ | |
| description: 'Retrieved task by ID successfully', | |
| type: Task | |
| }) | |
| @ApiNotFoundResponse({ description: 'No task found for ID' }) | |
| @ApiInternalServerErrorResponse({ | |
| description: 'Internal server error', | |
| }) | |
| @Get(':id') | |
| getTask(@Param('id') taskId: string): Task { | |
| return this.taskService.getTask(taskId); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment