Alpha Release 0.0.7 #73

Merged
niggl merged 74 commits from dev into main 2021-01-03 17:22:28 +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;
/**
* 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()