Skip to content

Commit

Permalink
Update min/max seconds for add-time (#364)
Browse files Browse the repository at this point in the history
min     1 ->  5
max 86400 -> 60

Trying to give 1 second results in 5 seconds.
Trying to give 86400 results in 60 seconds.

(Which corresponds to what can be found in
 modules/round/src/main/Moretimer.scala
...
 private val minTime = 5.seconds
 private val maxTime = 60.seconds
...
)
  • Loading branch information
tors42 authored Jul 25, 2024
1 parent eb1033c commit 100fdc9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ post:
description: How many seconds to give
schema:
type: string
minimum: 1
maximum: 86400
minimum: 5
maximum: 60
required: true
responses:
"200":
Expand Down

0 comments on commit 100fdc9

Please sign in to comment.