From 52f88af4c5ade9b413bcf960b7a996312dfdb789 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Mon, 16 Feb 2026 11:20:54 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(clock-bot):=20enable=20Redis?= =?UTF-8?q?=20session=20storage=20for=20widget?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Widget module now uses Redis storage mode to share sessions with the bot module. This enables Matrix-SSO-Link auto-login for widget. Co-Authored-By: Claude Opus 4.5 --- services/matrix-clock-bot/src/widget/widget.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/matrix-clock-bot/src/widget/widget.module.ts b/services/matrix-clock-bot/src/widget/widget.module.ts index 6708f4a80..69759681f 100644 --- a/services/matrix-clock-bot/src/widget/widget.module.ts +++ b/services/matrix-clock-bot/src/widget/widget.module.ts @@ -10,7 +10,7 @@ import { SessionModule } from '@manacore/bot-services'; * The widget displays live timer status with controls. */ @Module({ - imports: [ClockModule, SessionModule.forRoot()], + imports: [ClockModule, SessionModule.forRoot({ storageMode: 'redis' })], controllers: [WidgetController], }) export class WidgetModule {}