Compare commits

..

No commits in common. "110387dbd307b72bf69d6d9c1eb8f1b895ebef1d" and "9517df50826aff1a1cb03e611b990de5829e2132" have entirely different histories.

View File

@ -80,7 +80,7 @@ export class DonationController {
return (await this.donationRepository.findOne({ id: donation.id }, { relations: ['runner', 'donor', 'runner.scans', 'runner.scans.track'] })).toResponse();
}
@Put('/fixed/:id')
@Put('/:id')
@Authorized("DONATION:UPDATE")
@ResponseSchema(ResponseDonation)
@ResponseSchema(DonationNotFoundError, { statusCode: 404 })