Implement forget_room
This commit is contained in:
parent
394d189fb4
commit
2cb3928cf0
@ -1667,6 +1667,27 @@ i_ban_user(MatrixAPI *api,
|
||||
g_free(path);
|
||||
}
|
||||
|
||||
static void
|
||||
i_forget_room(MatrixAPI *api,
|
||||
MatrixAPICallback callback,
|
||||
gpointer user_data,
|
||||
const gchar *room_id,
|
||||
GError **error)
|
||||
{
|
||||
gchar *encoded_room_id, *path;
|
||||
|
||||
encoded_room_id = soup_uri_encode(room_id, NULL);
|
||||
path = g_strdup_printf("rooms/%s/forget", encoded_room_id);
|
||||
g_free(encoded_room_id);
|
||||
|
||||
_send(MATRIX_HTTP_API(api),
|
||||
callback, user_data,
|
||||
CALL_API,
|
||||
"POST", path, NULL, NULL, NULL, NULL,
|
||||
FALSE, error);
|
||||
g_free(path);
|
||||
}
|
||||
|
||||
static void
|
||||
matrix_http_api_matrix_api_init(MatrixAPIInterface *iface)
|
||||
{
|
||||
@ -1709,7 +1730,7 @@ matrix_http_api_matrix_api_init(MatrixAPIInterface *iface)
|
||||
|
||||
/* Room membership */
|
||||
iface->ban_user = i_ban_user;
|
||||
iface->forget_room = NULL;
|
||||
iface->forget_room = i_forget_room;
|
||||
iface->invite_user_3rdparty = NULL;
|
||||
iface->invite_user = NULL;
|
||||
iface->join_room = i_join_room;
|
||||
|
Loading…
Reference in New Issue
Block a user