diff --git a/README.md b/README.md index a918d71..45b294c 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,6 @@ MATRIX_WHITELIST= # Matrix Feature Flags (optional) MATRIX_AUTOJOIN=true MATRIX_ENCRYPTION=true -MATRIX_THREADS=true MATRIX_PREFIX_DM=false MATRIX_RICH_TEXT=true ``` diff --git a/src/env.ts b/src/env.ts index 00a5a4d..eeca625 100644 --- a/src/env.ts +++ b/src/env.ts @@ -13,7 +13,6 @@ export const { /** Matrix Bot Features */ MATRIX_AUTOJOIN, MATRIX_ENCRYPTION, - MATRIX_THREADS, MATRIX_PREFIX_DM, MATRIX_RICH_TEXT, /** Matrix Access Control */ @@ -38,7 +37,6 @@ export const { /** Matrix Bot Features */ MATRIX_AUTOJOIN: { schema: z.boolean().default(true), description: "Set to true if you want the bot to autojoin when invited" }, MATRIX_ENCRYPTION: { schema: z.boolean().default(true), description: "Set to true if you want the bot to support encrypted channels" }, - MATRIX_THREADS: { schema: z.boolean().default(true), description: "Set to true if you want the bot to answer always in a new thread/conversation" }, MATRIX_PREFIX_DM: { schema: z.boolean().default(false), description: "Set to false if you want the bot to answer to all messages in a one-to-one room" }, MATRIX_RICH_TEXT: { schema: z.boolean().default(true), description: "Set to true if you want the bot to answer with enriched text" }, /** Matrix Access Control */