mirror of
https://git.proxmox.com/git/proxmox
synced 2025-05-21 20:37:51 +00:00
verify: allow '0' days for reverification
and let it mean that we will always reverify Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
4e854d32f0
commit
c72fe7d77c
@ -145,8 +145,8 @@ pub const IGNORE_VERIFIED_BACKUPS_SCHEMA: Schema = BooleanSchema::new(
|
||||
.schema();
|
||||
|
||||
pub const VERIFICATION_OUTDATED_AFTER_SCHEMA: Schema = IntegerSchema::new(
|
||||
"Days after that a verification becomes outdated")
|
||||
.minimum(1)
|
||||
"Days after that a verification becomes outdated. (0 means always)")
|
||||
.minimum(0)
|
||||
.schema();
|
||||
|
||||
#[api(
|
||||
|
Loading…
Reference in New Issue
Block a user