mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Added /account clear [account] server
This commit is contained in:
parent
91883fd95d
commit
552d88b931
@ -1194,6 +1194,7 @@ cmd_init(void)
|
|||||||
|
|
||||||
account_clear_ac = autocomplete_new();
|
account_clear_ac = autocomplete_new();
|
||||||
autocomplete_add(account_clear_ac, "password");
|
autocomplete_add(account_clear_ac, "password");
|
||||||
|
autocomplete_add(account_clear_ac, "server");
|
||||||
autocomplete_add(account_clear_ac, "otr");
|
autocomplete_add(account_clear_ac, "otr");
|
||||||
|
|
||||||
close_ac = autocomplete_new();
|
close_ac = autocomplete_new();
|
||||||
|
@ -362,6 +362,10 @@ cmd_account(gchar **args, struct cmd_help_t help)
|
|||||||
accounts_clear_password(account_name);
|
accounts_clear_password(account_name);
|
||||||
cons_show("Removed password for account %s", account_name);
|
cons_show("Removed password for account %s", account_name);
|
||||||
cons_show("");
|
cons_show("");
|
||||||
|
} else if (strcmp(property, "server") == 0) {
|
||||||
|
accounts_clear_server(account_name);
|
||||||
|
cons_show("Removed server for account %s", account_name);
|
||||||
|
cons_show("");
|
||||||
} else if (strcmp(property, "otr") == 0) {
|
} else if (strcmp(property, "otr") == 0) {
|
||||||
accounts_clear_otr(account_name);
|
accounts_clear_otr(account_name);
|
||||||
cons_show("OTR policy removed for account %s", account_name);
|
cons_show("OTR policy removed for account %s", account_name);
|
||||||
|
@ -440,6 +440,15 @@ _accounts_clear_password(const char * const account_name)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
_accounts_clear_server(const char * const account_name)
|
||||||
|
{
|
||||||
|
if (accounts_account_exists(account_name)) {
|
||||||
|
g_key_file_remove_key(accounts, account_name, "server", NULL);
|
||||||
|
_save_accounts();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
_accounts_clear_otr(const char * const account_name)
|
_accounts_clear_otr(const char * const account_name)
|
||||||
{
|
{
|
||||||
@ -862,6 +871,7 @@ accounts_init_module(void)
|
|||||||
accounts_set_priority_all = _accounts_set_priority_all;
|
accounts_set_priority_all = _accounts_set_priority_all;
|
||||||
accounts_get_priority_for_presence_type = _accounts_get_priority_for_presence_type;
|
accounts_get_priority_for_presence_type = _accounts_get_priority_for_presence_type;
|
||||||
accounts_clear_password = _accounts_clear_password;
|
accounts_clear_password = _accounts_clear_password;
|
||||||
|
accounts_clear_server = _accounts_clear_server;
|
||||||
accounts_clear_otr = _accounts_clear_otr;
|
accounts_clear_otr = _accounts_clear_otr;
|
||||||
accounts_add_otr_policy = _accounts_add_otr_policy;
|
accounts_add_otr_policy = _accounts_add_otr_policy;
|
||||||
}
|
}
|
||||||
|
@ -78,6 +78,7 @@ void (*accounts_set_priority_all)(const char * const account_name, const gint va
|
|||||||
gint (*accounts_get_priority_for_presence_type)(const char * const account_name,
|
gint (*accounts_get_priority_for_presence_type)(const char * const account_name,
|
||||||
resource_presence_t presence_type);
|
resource_presence_t presence_type);
|
||||||
void (*accounts_clear_password)(const char * const account_name);
|
void (*accounts_clear_password)(const char * const account_name);
|
||||||
|
void (*accounts_clear_server)(const char * const account_name);
|
||||||
void (*accounts_clear_otr)(const char * const account_name);
|
void (*accounts_clear_otr)(const char * const account_name);
|
||||||
void (*accounts_add_otr_policy)(const char * const account_name, const char * const contact_jid, const char * const policy);
|
void (*accounts_add_otr_policy)(const char * const account_name, const char * const contact_jid, const char * const policy);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user