mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 01:19:40 +02:00
Add loginWithLoginToken function to exchange Matrix SSO loginToken for credentials. The app layout now detects the loginToken URL parameter and completes the SSO flow. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
444 B
TypeScript
16 lines
444 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { MatrixService } from './matrix.service';
|
|
import { TodoModule } from '../todo/todo.module';
|
|
import { TranscriptionModule, SessionModule, CreditModule } from '@manacore/bot-services';
|
|
|
|
@Module({
|
|
imports: [
|
|
TodoModule,
|
|
TranscriptionModule.forRoot(),
|
|
SessionModule.forRoot(),
|
|
CreditModule.forRoot(),
|
|
],
|
|
providers: [MatrixService],
|
|
exports: [MatrixService],
|
|
})
|
|
export class BotModule {}
|