diff --git a/ofborg/src/config.rs b/ofborg/src/config.rs index f4aa3f5..10728aa 100644 --- a/ofborg/src/config.rs +++ b/ofborg/src/config.rs @@ -14,12 +14,18 @@ use ofborg::acl; #[derive(Serialize, Deserialize, Debug)] pub struct Config { pub runner: RunnerConfig, + pub feedback: FeedbackConfig, pub checkout: CheckoutConfig, pub nix: NixConfig, pub rabbitmq: RabbitMQConfig, pub github: Option, } +#[derive(Serialize, Deserialize, Debug)] +pub struct FeedbackConfig { + pub full_logs: bool, +} + #[derive(Serialize, Deserialize, Debug)] pub struct RabbitMQConfig { pub ssl: bool,