mirror of
https://dev.azure.com/globalhealthx/EMR/_git/helix-engage-server
synced 2026-04-11 10:07:22 +00:00
- ThemeService: read/write/validate theme.json, auto-backup on save - ThemeController: GET/PUT/POST /api/config/theme (public GET, versioned PUT) - ThemeConfig type with version + updatedAt fields - Default theme: Global Hospital blue scale - ConfigThemeModule registered in AppModule Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
287 B
TypeScript
11 lines
287 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ThemeController } from './theme.controller';
|
|
import { ThemeService } from './theme.service';
|
|
|
|
@Module({
|
|
controllers: [ThemeController],
|
|
providers: [ThemeService],
|
|
exports: [ThemeService],
|
|
})
|
|
export class ConfigThemeModule {}
|