Skip to content

Commit

Permalink
feat: Add actionLinkedComplaintIdentifier to AssessmentDetailsInput (#97
Browse files Browse the repository at this point in the history
)
  • Loading branch information
mikevespi authored Oct 29, 2024
1 parent f574d3b commit ab18cd4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions backend/src/case_file/case_file_inputs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ input AssessmentDetailsInput {
actionNotRequired: Boolean!
actionJustificationCode: String
actions: [AssessmentActionInput]!
actionLinkedComplaintIdentifier: String
actionCloseComplaint: Boolean
}

input AssessmentActionInput {
Expand Down
2 changes: 2 additions & 0 deletions backend/src/case_file/dto/assessment-details.input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ export class AssessmentDetailsInput {
actionNotRequired: boolean;
actionJustificationCode: string;
actions: [AssessmentActionInput];
actionLinkedComplaintIdentifier: string;
actionCloseComplaint: boolean;
}

0 comments on commit ab18cd4

Please sign in to comment.