1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-27 11:02:16 +01:00

feat: disallow negative condition interval (#10783)

This commit is contained in:
Mateusz Kwasniewski 2025-10-13 11:47:53 +02:00 committed by GitHub
parent ea9f92bd88
commit 9db7bcffd5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,7 +8,8 @@ export const transitionConditionSchema = {
description: 'A transition condition for milestone progression',
properties: {
intervalMinutes: {
type: 'number',
type: 'integer',
minimum: 1,
description: 'The interval in minutes before transitioning',
example: 30,
},