Switched to accepting ids (numbers/number arrays) feature/90-accept_objects #101

Merged
niggl merged 26 commits from feature/90-accept_objects into dev 2021-01-15 17:57:47 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 1b799a6973 - Show all commits

View File

@ -16,7 +16,7 @@ export abstract class UpdateScan {
id: number; id: number;
/** /**
* The updated scan's associated runner. * The updated scan's associated runner's id.
* This is important to link ran distances to runners. * This is important to link ran distances to runners.
*/ */
@IsInt() @IsInt()

View File

@ -18,7 +18,7 @@ export abstract class UpdateTrackScan {
id: number; id: number;
/** /**
* The updated scan's associated runner. * The updated scan's associated runner's id.
* This is important to link ran distances to runners. * This is important to link ran distances to runners.
*/ */
@IsInt() @IsInt()
@ -33,7 +33,7 @@ export abstract class UpdateTrackScan {
valid?: boolean = true; valid?: boolean = true;
/** /**
* The updated scan's associated station. * The updated scan's associated station's id.
* This is important to link ran distances to runners. * This is important to link ran distances to runners.
*/ */
@IsInt() @IsInt()