fix proxmox_backup_manager remote list: s/userid/auth-id/

This commit is contained in:
Dietmar Maurer 2021-02-11 11:31:20 +01:00
parent 6279b8f5a5
commit 9f35e44681
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ fn list_remotes(param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result<Value,
let options = default_table_format_options() let options = default_table_format_options()
.column(ColumnConfig::new("name")) .column(ColumnConfig::new("name"))
.column(ColumnConfig::new("host")) .column(ColumnConfig::new("host"))
.column(ColumnConfig::new("userid")) .column(ColumnConfig::new("auth-id"))
.column(ColumnConfig::new("fingerprint")) .column(ColumnConfig::new("fingerprint"))
.column(ColumnConfig::new("comment")); .column(ColumnConfig::new("comment"));