Skip to content

Commit

Permalink
[TM-1272] Add an operationId that's shorter than the default generated.
Browse files Browse the repository at this point in the history
  • Loading branch information
roguenet committed Sep 24, 2024
1 parent ced9c22 commit d197bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/user-service/src/auth/auth.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class AuthController {
constructor (private readonly authService: AuthService) {}

@Post('logins')
@ApiOperation({ summary: 'Receive a JWT Token in exchange for login credentials' })
@ApiOperation({ operationId: 'authLogin', description: 'Receive a JWT Token in exchange for login credentials' })
@JsonApiResponse({ status: HttpStatus.CREATED, dataType: LoginResponse })
@ApiException(
() => UnauthorizedException,
Expand Down

0 comments on commit d197bd3

Please sign in to comment.