Implemented /group command with no args (list groups)

This commit is contained in:
James Booth
2013-06-02 20:20:44 +01:00
parent b89a751903
commit 6082ab8778
3 changed files with 20 additions and 1 deletions

View File

@@ -378,6 +378,12 @@ roster_get_contacts(void)
return result;
}
GSList *
roster_get_groups(void)
{
return autocomplete_get_list(groups_ac);
}
GSList *
roster_get_group(const char * const group)
{

View File

@@ -151,5 +151,6 @@ GSList * roster_get_group(const char * const group);
void roster_add_to_group(const char * const group, const char * const barejid);
void roster_remove_from_group(const char * const group,
const char * const barejid);
GSList * roster_get_groups(void);
#endif