1
0
forked from Yara724/api

blame and claim refactored

This commit is contained in:
2026-02-24 12:19:25 +03:30
parent 0d8858f458
commit 35732dd70a
81 changed files with 11603 additions and 77 deletions

View File

@@ -0,0 +1,8 @@
import { PartialType } from '@nestjs/swagger';
import { CreateWorkflowStepDto } from './create-workflow-step.dto';
/**
* Update DTO inherits all fields from Create DTO but makes them all optional
* Supports both blame and claim workflow steps
*/
export class UpdateWorkflowStepDto extends PartialType(CreateWorkflowStepDto) {}