api-types: allow empty namespace

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2022-05-10 14:40:34 +02:00 committed by Thomas Lamprecht
parent 3c09413a0a
commit 6f5753cfa3
1 changed files with 3 additions and 1 deletions

View File

@ -30,7 +30,9 @@ macro_rules! BACKUP_TIME_RE { () => (r"[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]
#[macro_export] #[macro_export]
macro_rules! BACKUP_NS_RE { macro_rules! BACKUP_NS_RE {
() => ( () => (
concat!(r"(?:", PROXMOX_SAFE_ID_REGEX_STR!(), r"/){0,7}", PROXMOX_SAFE_ID_REGEX_STR!()) concat!("(?:",
"(?:", PROXMOX_SAFE_ID_REGEX_STR!(), r"/){0,7}", PROXMOX_SAFE_ID_REGEX_STR!(),
")?")
); );
} }