Compare commits

..

No commits in common. "00215a81a7b34504eab21a6e1bd869cd8a781871" and "b4b52717fcbb40f0aaebb5c8372715e365342b8c" have entirely different histories.

View File

@ -35,12 +35,7 @@ export class CreateRunnerTeam extends CreateRunnerGroup {
let newRunnerTeam: RunnerTeam = new RunnerTeam(); let newRunnerTeam: RunnerTeam = new RunnerTeam();
newRunnerTeam.name = this.name; newRunnerTeam.name = this.name;
try { newRunnerTeam.parentGroup = await this.getParent();
newRunnerTeam.parentGroup = await this.getParent();
} catch (error) {
throw error;
}
newRunnerTeam.contact = await this.getContact() newRunnerTeam.contact = await this.getContact()
return newRunnerTeam; return newRunnerTeam;