allow to list any namespace with privileges on it and allow to create and delete namespaces if the user has modify permissions on the parent namespace. Creation is only allowed if the parent NS already exists. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
22 lines
510 B
Rust
22 lines
510 B
Rust
//! Backup Server Administration
|
|
|
|
use proxmox_router::list_subdirs_api_method;
|
|
use proxmox_router::{Router, SubdirMap};
|
|
|
|
pub mod datastore;
|
|
pub mod namespace;
|
|
pub mod sync;
|
|
pub mod traffic_control;
|
|
pub mod verify;
|
|
|
|
const SUBDIRS: SubdirMap = &[
|
|
("datastore", &datastore::ROUTER),
|
|
("sync", &sync::ROUTER),
|
|
("traffic-control", &traffic_control::ROUTER),
|
|
("verify", &verify::ROUTER),
|
|
];
|
|
|
|
pub const ROUTER: Router = Router::new()
|
|
.get(&list_subdirs_api_method!(SUBDIRS))
|
|
.subdirs(SUBDIRS);
|