0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 11:18:51 +02:00

modules/client/room_keys/keys: Increase content maximum for PUT method.

This commit is contained in:
Jason Volk 2020-06-08 12:36:56 -07:00
parent 64c82829d8
commit dc1e9a3c06

View file

@ -72,7 +72,14 @@ ircd::m::room_keys_keys_put
{
room_keys_keys, "PUT", put_room_keys_keys,
{
room_keys_keys_put.REQUIRES_AUTH
// Flags
room_keys_keys_put.REQUIRES_AUTH,
// timeout //TODO: XXX designated
30s,
// Payload maximum
1_MiB,
}
};