From 9006170bdf2d5e1c6ee7584931d08128bd1711fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fra=C3=9F?= Date: Mon, 25 Aug 2025 20:38:20 +0000 Subject: [PATCH] [del] conf:settings.email --- misc/conf.example.json | 3 --- source/conf.ts | 8 -------- 2 files changed, 11 deletions(-) diff --git a/misc/conf.example.json b/misc/conf.example.json index 87569ce..dfe379c 100644 --- a/misc/conf.example.json +++ b/misc/conf.example.json @@ -49,9 +49,6 @@ "facultative_membership_number": true, "auto_register": true }, - "summon_email": { - "remark": null - }, "password_policy": { "minimum_length": 4, "maximum_length": 12, diff --git a/source/conf.ts b/source/conf.ts index 39d9d92..a837eff 100644 --- a/source/conf.ts +++ b/source/conf.ts @@ -154,9 +154,6 @@ namespace _espe.conf facultative_membership_number : boolean; auto_register : boolean; }; - summon_email : { - remark : string; - }; password_policy : { minimum_length : (null | int); maximum_length : (null | int); @@ -394,11 +391,6 @@ namespace _espe.conf "auto_register": (node_settings_misc["auto_register"] ?? false), })) (node_settings["misc"] ?? {}) ), - "summon_email": ( - ((node_settings_summon_email) => ({ - "remark": (node_settings_summon_email["remark"] ?? null), - })) (node_settings["summon_email"] ?? {}) - ), "password_policy": ( ((node_settings_password_policy) => ({ "minimum_length": (