(
@Parse(toNumber) id: number,
user: string,
@QueryParam() price: string,
@QueryParam(toBoolean) old: boolean)
| 35 | // Verify with, without parse and with, without handler in query-param |
| 36 | @HttpGet('/:user/:id') |
| 37 | userImg( |
| 38 | @Parse(toNumber) id: number, |
| 39 | user: string, |
| 40 | @QueryParam() price: string, |
| 41 | @QueryParam(toBoolean) old: boolean): any { |
| 42 | return { id: id, user: user, price: price, old: old }; |
| 43 | } |
| 44 | @HttpPost('/add/:user/:id') |
| 45 | addParse( |
| 46 | @Parse(() => 'test_body') body: any, |
nothing calls this directly
no test coverage detected