matrix/account-data/im.nheko.event_expiry: more examples

This commit is contained in:
Aminda Suomalainen 2024-02-20 09:42:27 +02:00
parent ca78cfa62e
commit 8bc8feae46
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q

View File

@ -5,7 +5,9 @@
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
- [Disable](#disable)
- [28 days](#28-days)
- [Example with keep only x messages & always keep](#example-with-keep-only-x-messages--always-keep)
- [31 days](#31-days)
- [365 days](#365-days)
@ -13,6 +15,18 @@
<!-- prettier-ignore-end -->
## Disable
- Expire events after 0 days
- Only keep latest 0 events
- Always keep latest 0 events
```json
{
"exclude_state_events": true
}
```
## 28 days
_Also known as 4 weeks._
@ -24,6 +38,21 @@ _Also known as 4 weeks._
}
```
### Example with keep only x messages & always keep
- Expire events after 28 days
- Only keep latest 5 events
- Always keep latest 1 events
```json
{
"exclude_state_events": true,
"expire_after_ms": 2419200000,
"keep_only_latest": 5,
"protect_latest": 1
}
```
## 31 days
```json