fix: fix controller name

This commit is contained in:
Abdalhameed Ahmad
2025-09-07 21:47:17 +03:00
parent 954aa422a2
commit e6642b5a15

View File

@ -115,7 +115,7 @@ export class JuniorController {
@UseGuards(RolesGuard) @UseGuards(RolesGuard)
@AllowedRoles(Roles.GUARDIAN) @AllowedRoles(Roles.GUARDIAN)
@ApiDataResponse(TransferToJuniorResponseDto) @ApiDataResponse(TransferToJuniorResponseDto)
async doesJuniorBelongToGuardian( async transferToJunior(
@AuthenticatedUser() user: IJwtPayload, @AuthenticatedUser() user: IJwtPayload,
@Param('juniorId', CustomParseUUIDPipe) juniorId: string, @Param('juniorId', CustomParseUUIDPipe) juniorId: string,
@Body() body: TransferToJuniorRequestDto, @Body() body: TransferToJuniorRequestDto,