(body?: any)
| 228 | __param: Record<string, decorators.ParamOption<any>[]>; |
| 229 | |
| 230 | back(body?: any) { |
| 231 | this.response.body = body || this.response.body || {}; |
| 232 | this.response.redirect = this.request.headers.referer || '/'; |
| 233 | } |
| 234 | |
| 235 | binary(data: any, name?: string) { |
| 236 | this.response.body = data; |
no outgoing calls
no test coverage detected