Added otr to /account clear properties

This commit is contained in:
James Booth
2014-05-11 15:32:38 +01:00
parent d44e954f6b
commit 3967b26aea
4 changed files with 16 additions and 0 deletions

View File

@@ -1033,6 +1033,7 @@ cmd_init(void)
account_clear_ac = autocomplete_new();
autocomplete_add(account_clear_ac, "password");
autocomplete_add(account_clear_ac, "otr");
close_ac = autocomplete_new();
autocomplete_add(close_ac, "read");

View File

@@ -341,6 +341,10 @@ cmd_account(gchar **args, struct cmd_help_t help)
accounts_clear_password(account_name);
cons_show("Removed password for account %s", account_name);
cons_show("");
} else if (strcmp(property, "otr") == 0) {
accounts_clear_otr(account_name);
cons_show("OTR policy removed for account %s", account_name);
cons_show("");
} else {
cons_show("Invalid property: %s", property);
cons_show("");