From 503bd9f22dc2803687dc0ad775a0a7c7aead755e Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Wed, 5 Jul 2023 16:23:08 +0300 Subject: [PATCH] im.nheko.event_expiry: add 365 days --- .../im.nheko.event_expiry/README.md | 26 +++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/matrix/account-data/im.nheko.event_expiry/README.md b/matrix/account-data/im.nheko.event_expiry/README.md index 7b17197..6a6c077 100644 --- a/matrix/account-data/im.nheko.event_expiry/README.md +++ b/matrix/account-data/im.nheko.event_expiry/README.md @@ -1,7 +1,29 @@ # `im.nheko.event_expiry` -```jsonnet + + + + + +- [31 days](#31-days) +- [365 days](#365-days) + + + + + +## 31 days + +```json { - "expire_after_ms": 2678400000 + "expire_after_ms": 2678400000 +} +``` + +## 365 days + +```json +{ + "expire_after_ms": 31536000000 } ```