| 83 | }); |
| 84 | |
| 85 | @Controller('users') |
| 86 | class UsersController { |
| 87 | @Head('rsvp') |
| 88 | hRsvp() {} |
| 89 | |
| 90 | @Options('rsvp') |
| 91 | oRsvp() {} |
| 92 | |
| 93 | @Get('rsvp') |
| 94 | gRsvp() {} |
| 95 | |
| 96 | @Post('rsvp') |
| 97 | pRsvp() {} |
| 98 | |
| 99 | @Put('rsvp') |
| 100 | puRsvp() {} |
| 101 | |
| 102 | @Patch('rsvp') |
| 103 | ptRsvp() {} |
| 104 | |
| 105 | @Delete('rsvp') |
| 106 | dRsvp() {} |
| 107 | |
| 108 | @Post() |
| 109 | create() {} |
| 110 | |
| 111 | @Get() |
| 112 | findAll() {} |
| 113 | |
| 114 | @Get(':id') |
| 115 | findOne() {} |
| 116 | |
| 117 | @Patch(':id') |
| 118 | update() {} |
| 119 | |
| 120 | @Delete(':id') |
| 121 | remove() {} |
| 122 | } |
| 123 | |
| 124 | it('should remove overlapping routes', () => { |
| 125 | configProxy.forRoutes(UsersController); |
nothing calls this directly
no test coverage detected