src/api2/config/datastore.rs: set protected flags for create/delete API

This commit is contained in:
Dietmar Maurer 2019-12-18 10:52:45 +01:00
parent f0db500808
commit a66e7920dc
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ pub const POST: ApiMethod = ApiMethod::new(
("path", false, &StringSchema::new("Directory path. The directory path is created if it does not already exist.").schema()),
],
)
);
).protected(true);
fn create_datastore(
param: Value,
@ -75,7 +75,7 @@ pub const DELETE: ApiMethod = ApiMethod::new(
("name", false, &DATASTORE_SCHEMA),
],
)
);
).protected(true);
fn delete_datastore(
param: Value,