Merge remote-tracking branch 'origin/fix/rls-dto-errors' into develop

This commit is contained in:
Jason Woltje
2026-01-29 20:30:20 -06:00
9 changed files with 63 additions and 50 deletions

View File

@@ -13,8 +13,9 @@ import { Type } from "class-transformer";
* DTO for querying events with filters and pagination
*/
export class QueryEventsDto {
@IsOptional()
@IsUUID("4", { message: "workspaceId must be a valid UUID" })
workspaceId!: string;
workspaceId?: string;
@IsOptional()
@IsUUID("4", { message: "projectId must be a valid UUID" })