Runner import #33

Merged
niggl merged 16 commits from feature/22-runner_import into dev 2020-12-18 13:24:52 +00:00
Showing only changes of commit 30952aa14f - Show all commits

View File

@ -27,7 +27,6 @@ export class ImportController {
@UseBefore(RawBodyMiddleware)
@OpenAPI({ description: "Create new runners from csv" })
postCSV(@Req() request: any) {
console.log(request.rawBody.toString())
return request.rawBody.toString();
throw new Error("Not implemented yet.");
}
}