Self service registration feature/112-selfservice_registration #120

Merged
niggl merged 31 commits from feature/112-selfservice_registration into dev 2021-01-22 14:13:29 +00:00
Showing only changes of commit 946efef252 - Show all commits

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'] }));