feat: harden platform workflows and UI governance

This commit is contained in:
hectorzhao
2026-07-22 14:14:55 +08:00
parent ef957f7daa
commit 0f223f7f91
80 changed files with 4958 additions and 764 deletions
+2
View File
@@ -1,8 +1,10 @@
import { Module } from '@nestjs/common';
import { ChannelsController } from './channels.controller';
import { ChannelsService } from './channels.service';
import { DeletionGovernanceModule } from '../deletion-governance/deletion-governance.module';
@Module({
imports: [DeletionGovernanceModule],
controllers: [ChannelsController],
providers: [ChannelsService],
exports: [ChannelsService],