Skip to content

Commit

Permalink
build: fix missing parameter
Browse files Browse the repository at this point in the history
Signed-off-by: Ariel Gentile <gentilester@gmail.com>
  • Loading branch information
genaris committed Oct 10, 2022
1 parent 8fc3916 commit ea2a390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/extension-module/dummy/DummyApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class DummyApi {
* @returns List containing all records
*/
public findAllByQuery(query: Query<DummyRecord>): Promise<DummyRecord[]> {
return this.dummyService.findAllByQuery(query)
return this.dummyService.findAllByQuery(this.agentContext, query)
}

private registerHandlers(dispatcher: Dispatcher) {
Expand Down

0 comments on commit ea2a390

Please sign in to comment.