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
3 changed files with 5 additions and 5 deletions
Showing only changes of commit b89525746d - Show all commits

View File

@ -9,7 +9,7 @@ import { Scan } from '../../entities/Scan';
*/ */
export abstract class CreateScan { export abstract class CreateScan {
/** /**
* The scan's associated runner. * The 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

@ -19,7 +19,7 @@ export class CreateScanStation {
description?: string; description?: string;
/** /**
* The station's associated track. * The station's associated track's id.
*/ */
@IsInt() @IsInt()
@IsPositive() @IsPositive()

View File

@ -12,7 +12,7 @@ import { TrackScan } from '../../entities/TrackScan';
*/ */
export class CreateTrackScan { export class CreateTrackScan {
/** /**
* The runnerCard associated with the scan. * The id of the runnerCard associated with the scan.
* This get's saved for documentation and management purposes. * This get's saved for documentation and management purposes.
*/ */
@IsInt() @IsInt()
@ -20,8 +20,8 @@ export class CreateTrackScan {
card: number; card: number;
/** /**
* The scanning station that created the scan. * The scanning station's id that created the scan.
* Mainly used for logging and traceing back scans (or errors) * Mainly used for logging and traceing back scans (or errors).
*/ */
@IsInt() @IsInt()
@IsPositive() @IsPositive()