All checks were successful
Test Asgard Runner / test (push) Successful in 2s
- DB migrations 017 (betterchat_configs) and 020 (timedexecute_configs) applied - TypeORM entities matching production schema exactly - NestJS modules with full CRUD + apply-to-server + import-from-server - Pinia stores following teleport config pattern - BetterChatView: Chat Groups editor with color pickers, font sizes, format strings; Settings tab with word filter, anti-flood, player tagging - TimedExecuteView: TimerRepeat with presets, RealTime-Timer, OnConnect/OnDisconnect command lists - Wired into app.module.ts, router, DashboardLayout nav Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
571 B
TypeScript
15 lines
571 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { BetterChatController } from './betterchat.controller';
|
|
import { BetterChatService } from './betterchat.service';
|
|
import { BetterChatConfig } from '../../entities/betterchat-config.entity';
|
|
import { NatsService } from '../../services/nats.service';
|
|
|
|
@Module({
|
|
imports: [TypeOrmModule.forFeature([BetterChatConfig])],
|
|
controllers: [BetterChatController],
|
|
providers: [BetterChatService, NatsService],
|
|
exports: [BetterChatService],
|
|
})
|
|
export class BetterChatModule {}
|