src/api2/types.rs: define REMOTE_ID_SCHEMA here

This commit is contained in:
Dietmar Maurer
2020-01-13 11:47:07 +01:00
parent 6de36b94b1
commit 167971ed49
4 changed files with 11 additions and 7 deletions

View File

@ -3,6 +3,7 @@ use serde_json::Value;
use proxmox::api::{api, ApiMethod, Router, RpcEnvironment};
use crate::api2::types::*;
use crate::config::remotes;
#[api(
@ -34,7 +35,7 @@ pub fn list_remotes(
input: {
properties: {
name: {
schema: remotes::REMOTE_ID_SCHEMA,
schema: REMOTE_ID_SCHEMA,
},
comment: {
optional: true,
@ -77,7 +78,7 @@ pub fn create_remote(name: String, param: Value) -> Result<(), Error> {
input: {
properties: {
name: {
schema: remotes::REMOTE_ID_SCHEMA,
schema: REMOTE_ID_SCHEMA,
},
},
},