Files
stack/apps/orchestrator/src/api/mission-control/dto/get-mission-control-audit-log-query.dto.ts
Jason Woltje 4792f7b70a
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
feat: MS23-P2-007 AuditLogDrawer + audit log endpoint
2026-03-07 14:40:06 -06:00

22 lines
377 B
TypeScript

import { Type } from "class-transformer";
import { IsInt, IsOptional, IsString, Max, Min } from "class-validator";
export class GetMissionControlAuditLogQueryDto {
@IsOptional()
@IsString()
sessionId?: string;
@IsOptional()
@Type(() => Number)
@IsInt()
@Min(1)
page = 1;
@IsOptional()
@Type(() => Number)
@IsInt()
@Min(1)
@Max(200)
limit = 50;
}