All checks were successful
Test Asgard Runner / test (push) Successful in 3s
- Migration 021: raidablebases_configs table with JSONB config_data - Entity, module, controller (7 endpoints), service with NATS deploy/import - Frontend: 4-tab editor (General, Difficulty, NPC, Loot & Rewards) - Pinia store, types, router route, sidebar nav with Swords icon - Top 30 most common settings with actual RaidableBases.json key paths - Difficulty sub-tabs for Easy/Medium/Hard/Expert/Nightmare with spawn day toggles Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
604 B
TypeScript
15 lines
604 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { RaidableBasesController } from './raidablebases.controller';
|
|
import { RaidableBasesService } from './raidablebases.service';
|
|
import { RaidableBasesConfig } from '../../entities/raidablebases-config.entity';
|
|
import { NatsService } from '../../services/nats.service';
|
|
|
|
@Module({
|
|
imports: [TypeOrmModule.forFeature([RaidableBasesConfig])],
|
|
controllers: [RaidableBasesController],
|
|
providers: [RaidableBasesService, NatsService],
|
|
exports: [RaidableBasesService],
|
|
})
|
|
export class RaidableBasesModule {}
|