Skip to content

Commit

Permalink
SCKAN-333 note service update
Browse files Browse the repository at this point in the history
  • Loading branch information
D-GopalKrishna committed Nov 17, 2024
1 parent 469e1d3 commit af14191
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/services/NoteService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ class NoteService extends AbstractService {
}
}
}
async getNotesList(connectivityStatementId?: number, limit?: number, offset?: number, sentenceId?: number) {
return composerApi.composerNoteList(connectivityStatementId, limit, offset, sentenceId).then((res: any) => res.data)
async getNotesList(connectivityStatementId?: number, includeSystemNotes?: boolean, limit?: number, offset?: number, sentenceId?: number) {
return composerApi.composerNoteList(connectivityStatementId, includeSystemNotes, limit, offset, sentenceId).then((res: any) => res.data)
}
async getObject(id: string): Promise<Note> {
return {} as Note
Expand Down

0 comments on commit af14191

Please sign in to comment.