All checks were successful
Test Asgard Runner / test (push) Successful in 2s
Implements GET/POST /api/files proxy for all VueFinder operations
(list, search, preview, download, delete, rename, move, copy, mkdir,
new-file, save, upload). Routes via NATS request-reply to the companion
agent on corrosion.{license_id}.files.cmd with 30s timeout. Gated
behind files.view (GET) and files.manage (POST) permissions.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
320 B
TypeScript
11 lines
320 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { FilesController } from './files.controller';
|
|
import { FilesService } from './files.service';
|
|
import { NatsService } from '../../services/nats.service';
|
|
|
|
@Module({
|
|
controllers: [FilesController],
|
|
providers: [FilesService, NatsService],
|
|
})
|
|
export class FilesModule {}
|