Add and set the "Bcc self" option.

This commit is contained in:
2020-05-23 23:52:42 +01:00
parent 373311e826
commit 370f5076a1
4 changed files with 32 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
use crate::padfoot::{var_str, var_u32, VarArg};
use crate::padfoot::{var_bool, var_str, var_u32, VarArg};
use crate::telepathy;
use dbus::tree::MethodErr;
@@ -49,6 +49,7 @@ pub fn parameters() -> Vec<ParamSpec> {
"s".to_string(),
var_str("".to_string()),
),
("bcc-self".to_string(), 0, "b".to_string(), var_bool(false)),
]
}