Minimum lap times for tracks feature/71-track_times #72

Merged
niggl merged 14 commits from feature/71-track_times into dev 2021-01-03 17:18:03 +00:00
4 changed files with 4 additions and 4 deletions
Showing only changes of commit f378b0651a - Show all commits

View File

@ -21,7 +21,7 @@ export class CreateTrack {
distance: number; distance: number;
/** /**
* The minimum time a runner should take to run a lap on this track. * The minimum time a runner should take to run a lap on this track (in seconds).
* Will be used for fraud detection. * Will be used for fraud detection.
*/ */
@IsInt() @IsInt()

View File

@ -25,7 +25,7 @@ export class UpdateTrack {
distance: number; distance: number;
/** /**
* The minimum time a runner should take to run a lap on this track. * The minimum time a runner should take to run a lap on this track (in seconds).
* Will be used for fraud detection. * Will be used for fraud detection.
*/ */
@IsInt() @IsInt()

View File

@ -40,7 +40,7 @@ export class Track {
distance: number; distance: number;
/** /**
* The minimum time a runner should take to run a lap on this track. * The minimum time a runner should take to run a lap on this track (in seconds).
* Will be used for fraud detection. * Will be used for fraud detection.
*/ */
@Column({ nullable: true }) @Column({ nullable: true })

View File

@ -25,7 +25,7 @@ export class ResponseTrack {
distance: number; distance: number;
/** /**
* The minimum time a runner should take to run a lap on this track. * The minimum time a runner should take to run a lap on this track (in seconds).
* Will be used for fraud detection. * Will be used for fraud detection.
*/ */
@IsInt() @IsInt()