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>
26 lines
605 B
TypeScript
26 lines
605 B
TypeScript
import { IsString, IsOptional, IsObject, IsBoolean, MaxLength } from 'class-validator';
|
|
import { ApiPropertyOptional } from '@nestjs/swagger';
|
|
|
|
export class UpdateBetterChatConfigDto {
|
|
@ApiPropertyOptional({ example: 'Updated Chat Config' })
|
|
@IsString()
|
|
@MaxLength(100)
|
|
@IsOptional()
|
|
config_name?: string;
|
|
|
|
@ApiPropertyOptional({ example: 'Updated description' })
|
|
@IsString()
|
|
@IsOptional()
|
|
description?: string;
|
|
|
|
@ApiPropertyOptional()
|
|
@IsObject()
|
|
@IsOptional()
|
|
config_data?: Record<string, any>;
|
|
|
|
@ApiPropertyOptional()
|
|
@IsBoolean()
|
|
@IsOptional()
|
|
is_active?: boolean;
|
|
}
|