Added helpful comment about the tracktime's unit

ref #71
This commit is contained in:
Nicolai Ort 2021-01-03 17:52:36 +01:00
parent 1a0573e0d0
commit f378b0651a
4 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@ export class CreateTrack {
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.
*/
@IsInt()

View File

@ -25,7 +25,7 @@ export class UpdateTrack {
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.
*/
@IsInt()

View File

@ -40,7 +40,7 @@ export class Track {
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.
*/
@Column({ nullable: true })

View File

@ -25,7 +25,7 @@ export class ResponseTrack {
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.
*/
@IsInt()