Updated Method of removeing the team of citizen runners

ref #112
This commit is contained in:
Nicolai Ort 2021-01-21 17:01:56 +01:00
parent 73b1114883
commit 946efef252
1 changed files with 1 additions and 1 deletions

View File

@ -42,8 +42,8 @@ export class RunnerSelfServiceController {
const org = await this.groupRepository.findOne({ id: 1 });
if (!org) { throw new RunnerGroupNotFoundError(); }
createRunner.team = null;
let runner = await createRunner.toEntity(org);
runner.group = org;
runner = await this.runnerRepository.save(runner);
return new ResponseSelfServiceRunner(await this.runnerRepository.findOne(runner, { relations: ['scans', 'group', 'scans.track', 'cards', 'distanceDonations', 'distanceDonations.donor', 'distanceDonations.runner', 'distanceDonations.runner.scans', 'distanceDonations.runner.scans.track'] }));