im.nheko.event_expiry: add 365 days

This commit is contained in:
Aminda Suomalainen 2023-07-05 16:23:08 +03:00
parent cf0cb2986a
commit 503bd9f22d
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q

View File

@ -1,7 +1,29 @@
# `im.nheko.event_expiry` # `im.nheko.event_expiry`
```jsonnet <!-- prettier-ignore-start -->
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
- [31 days](#31-days)
- [365 days](#365-days)
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
<!-- prettier-ignore-end -->
## 31 days
```json
{ {
"expire_after_ms": 2678400000 "expire_after_ms": 2678400000
} }
``` ```
## 365 days
```json
{
"expire_after_ms": 31536000000
}
```