Skip to content

Commit

Permalink
feat: CE-1003 Add notes to CEEB complaint outcome
Browse files Browse the repository at this point in the history
  • Loading branch information
Scarlett-Truong committed Sep 6, 2024
1 parent 4b56e12 commit 4c79f9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/src/case_file/case_file.resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,19 +89,19 @@ export class CaseFileResolver {
}

@Mutation("createNote")
@Roles(Role.COS_OFFICER)
@Roles(Role.COS_OFFICER, Role.CEEB)
createNote(@Args("input") input: CreateSupplementalNoteInput) {
return this.caseFileService.createNote(input);
}

@Mutation("updateNote")
@Roles(Role.COS_OFFICER)
@Roles(Role.COS_OFFICER, Role.CEEB)
updateNote(@Args("input") input: UpdateSupplementalNoteInput) {
return this.caseFileService.updateNote(input);
}

@Mutation("deleteNote")
@Roles(Role.COS_OFFICER)
@Roles(Role.COS_OFFICER, Role.CEEB)
deleteNote(@Args("input") input: DeleteSupplementalNoteInput) {
return this.caseFileService.deleteNote(input);
}
Expand Down

0 comments on commit 4c79f9d

Please sign in to comment.