Compare commits
2 Commits
0a0050368f
...
42d3f9cb98
Author | SHA1 | Date | |
---|---|---|---|
42d3f9cb98 | |||
e4cb8eba1d |
@ -66,7 +66,7 @@ export class RunnerOrganisationController {
|
||||
@ResponseSchema(RunnerOrganisationIdsNotMatchingError, { statusCode: 406 })
|
||||
@OpenAPI({ description: "Update a runnerOrganisation object (id can't be changed)." })
|
||||
async put(@Param('id') id: number, @EntityFromBody() runnerOrganisation: RunnerOrganisation) {
|
||||
let oldRunnerOrganisation = await this.runnerOrganisationRepository.findOne({ id: id }, { relations: ['address', 'contact', 'teams'] });
|
||||
let oldRunnerOrganisation = await this.runnerOrganisationRepository.findOne({ id: id });
|
||||
|
||||
if (!oldRunnerOrganisation) {
|
||||
throw new RunnerOrganisationNotFoundError();
|
||||
|
Loading…
x
Reference in New Issue
Block a user