0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-30 04:38:52 +02:00

modules/client/rooms/messages: Select default event keys for now.

This commit is contained in:
Jason Volk 2018-08-18 22:05:32 -07:00
parent ff4e20d948
commit 89afac86a2

View file

@ -29,6 +29,25 @@ max_filter_miss
{ "default", 2048L },
};
static const m::event::fetch::opts
default_fetch_opts
{
m::event::keys::include
{
"content",
"depth",
"event_id",
"membership",
"origin_server_ts",
"prev_events",
"redacts",
"room_id",
"sender",
"state_key",
"type",
},
};
resource::response
get__messages(client &client,
const resource::request &request,
@ -74,7 +93,7 @@ get__messages(client &client,
m::room::messages it
{
room, page.from
room, page.from, &default_fetch_opts
};
const unique_buffer<mutable_buffer> buf