Removed console logs

This commit is contained in:
2020-12-10 17:43:00 +01:00
parent bc80be947d
commit 7fe9480c94
4 changed files with 0 additions and 4 deletions

View File

@@ -29,7 +29,6 @@ export class RunnerOrganisationController {
async getAll() {
let responseTeams: ResponseRunnerOrganisation[] = new Array<ResponseRunnerOrganisation>();
const runners = await this.runnerOrganisationRepository.find({ relations: ['address', 'contact', 'teams'] });
console.log(runners);
runners.forEach(runner => {
responseTeams.push(new ResponseRunnerOrganisation(runner));
});