Marked csv import as not implemented

This commit is contained in:
Nicolai Ort 2020-12-17 16:20:20 +01:00
parent 2e4a4f1661
commit 30952aa14f
1 changed files with 1 additions and 2 deletions

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.");
}
}