Full NestJS backend for the KC-App platform: - auth: Authentik OIDC resource-server strategy + guest invite-code JWT login, plus TokenVerificationService for the WS handshake path - kc: Leitungsteam-only KC (event) creation/listing - wahl: Wahl/Workshop admin, Force-Zuteilung overrides, ZuteilungService (port of the WP plugin's kc_run_zuteilung), CSV export - files: LT-only upload with visibility tiers; list/download filtered by caller tier; StorageProvider abstraction (WebDAV/Nextcloud default, S3) - chat: Gemeinde group / DM / LT-wide / broadcast channels; REST + raw ws gateway sharing ChatService access rules - sync: append-only SyncLogEntry replication log + local<->cloud push/pull scheduler, shared-secret guarded - common: Role enum, @Roles decorator, KC-scoped RolesGuard (LT global) - serves client/web/ interim static web client under / (API under /api) Typecheck, nest build and boot test pass; needs real Postgres/Authentik/ Nextcloud to run end to end. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
17 lines
599 B
TypeScript
17 lines
599 B
TypeScript
import { Global, Module } from '@nestjs/common';
|
|
import { ScheduleModule } from '@nestjs/schedule';
|
|
import { SyncService } from './sync.service';
|
|
import { SyncController } from './sync.controller';
|
|
import { SyncSchedulerService } from './sync-scheduler.service';
|
|
|
|
/// Global so every feature module can inject SyncService to capture its
|
|
/// mutations without each one importing SyncModule explicitly.
|
|
@Global()
|
|
@Module({
|
|
imports: [ScheduleModule.forRoot()],
|
|
controllers: [SyncController],
|
|
providers: [SyncService, SyncSchedulerService],
|
|
exports: [SyncService],
|
|
})
|
|
export class SyncModule {}
|