m.room.retention: add the expire_on_clients option

I doubt anything implements it, but hopefully Synapse implementation contains it
This commit is contained in:
Aminda Suomalainen 2022-05-17 23:10:23 +03:00
parent 48773d2d4a
commit f383701f9e
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
4 changed files with 8 additions and 4 deletions

View File

@ -1,4 +1,5 @@
{
"min_lifetime": 3600000,
"max_lifetime": 3600000
"max_lifetime": 3600000,
"expire_on_clients": true
}

View File

@ -1,4 +1,5 @@
{
"min_lifetime": 86400000,
"max_lifetime": 86400000
"max_lifetime": 86400000,
"expire_on_clients": true
}

View File

@ -1,4 +1,5 @@
{
"min_lifetime": 86400000,
"max_lifetime": 2678400000
"max_lifetime": 2678400000,
"expire_on_clients": true
}

View File

@ -1,4 +1,5 @@
{
"min_lifetime": 86400000,
"max_lifetime": 604800000
"max_lifetime": 604800000,
"expire_on_clients": true
}