Skip to content

Commit

Permalink
feat: CE-1003 Add notes to CEEB complaint outcome (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
Scarlett-Truong authored Sep 9, 2024
1 parent 4b56e12 commit 409efa4
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 409efa4

Please sign in to comment.