feat(federation): enrollment controller + single-use token flow (FED-M2-07) (#497)
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/publish Pipeline was successful

This commit was merged in pull request #497.
This commit is contained in:
2026-04-22 04:23:19 +00:00
parent 01dd6b9fa1
commit 0bfaa56e9e
10 changed files with 4202 additions and 3 deletions

View File

@@ -1,9 +1,13 @@
import { Module } from '@nestjs/common';
import { AdminGuard } from '../admin/admin.guard.js';
import { CaService } from './ca.service.js';
import { EnrollmentController } from './enrollment.controller.js';
import { EnrollmentService } from './enrollment.service.js';
import { GrantsService } from './grants.service.js';
@Module({
providers: [CaService, GrantsService],
exports: [CaService, GrantsService],
controllers: [EnrollmentController],
providers: [AdminGuard, CaService, EnrollmentService, GrantsService],
exports: [CaService, EnrollmentService, GrantsService],
})
export class FederationModule {}