Merge branch 'dev' into feature/17-automated_tests

# Conflicts:
#	src/app.ts
#	src/controllers/RunnerController.ts
#	src/controllers/RunnerOrganisationController.ts
#	src/controllers/RunnerTeamController.ts
#	src/models/actions/CreateParticipant.ts
This commit is contained in:
2020-12-10 17:45:23 +01:00
6 changed files with 32 additions and 36 deletions

View File

@@ -27,7 +27,6 @@ export class RunnerController {
async getAll() {
let responseRunners: ResponseRunner[] = new Array<ResponseRunner>();
const runners = await this.runnerRepository.find({ relations: ['scans', 'group'] });
console.log(runners);
runners.forEach(runner => {
responseRunners.push(new ResponseRunner(runner));
});