Method
addParse
(
@Parse(() => 'test_body') body: any,
@Parse(() => 'test_user') user: string)
Source from the content-addressed store, hash-verified
| 101 | } |
| 102 | @HttpPost('/addParse/:user/:op') |
| 103 | addParse( |
| 104 | @Parse(() => 'test_body') body: any, |
| 105 | @Parse(() => 'test_user') user: string): any { |
| 106 | return { |
| 107 | body: body, |
| 108 | user: user |
| 109 | }; |
| 110 | } |
| 111 | @HttpGet('/handler/:id') |
| 112 | handler(@Parse(customHandler) id: any): any { |
| 113 | return id; |
Callers
nothing calls this directly
Tested by
no test coverage detected