config/node: add 'task_log_max_days' config
to be able to configure the maximum days to keep task logs Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
baefc29544
commit
eb419c5267
|
@ -66,6 +66,8 @@ pub enum DeletableProperty {
|
|||
default_lang,
|
||||
/// Delete any description
|
||||
description,
|
||||
/// Delete the task-log-max-days property
|
||||
task_log_max_days,
|
||||
}
|
||||
|
||||
#[api(
|
||||
|
@ -127,6 +129,7 @@ pub fn update_node_config(
|
|||
DeletableProperty::ciphers_tls_1_2 => { config.ciphers_tls_1_2 = None; },
|
||||
DeletableProperty::default_lang => { config.default_lang = None; },
|
||||
DeletableProperty::description => { config.description = None; },
|
||||
DeletableProperty::task_log_max_days => { config.task_log_max_days = None; },
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -143,6 +146,7 @@ pub fn update_node_config(
|
|||
if update.ciphers_tls_1_2.is_some() { config.ciphers_tls_1_2 = update.ciphers_tls_1_2; }
|
||||
if update.default_lang.is_some() { config.default_lang = update.default_lang; }
|
||||
if update.description.is_some() { config.description = update.description; }
|
||||
if update.task_log_max_days.is_some() { config.task_log_max_days = update.task_log_max_days; }
|
||||
|
||||
crate::config::node::save_config(&config)?;
|
||||
|
||||
|
|
|
@ -222,6 +222,10 @@ pub struct NodeConfig {
|
|||
/// Node description
|
||||
#[serde(skip_serializing_if = "Option::is_none")]
|
||||
pub description: Option<String>,
|
||||
|
||||
/// Maximum days to keep Task logs
|
||||
#[serde(skip_serializing_if = "Option::is_none")]
|
||||
pub task_log_max_days: Option<usize>,
|
||||
}
|
||||
|
||||
impl NodeConfig {
|
||||
|
|
Loading…
Reference in New Issue