Skip to content

Commit

Permalink
refactor: rename pre -> post for hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
Devessier committed Sep 12, 2024
1 parent 419ae24 commit 60c38f2
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ export class WorkspaceQueryHookService {
return;
}

for (const preHookInstance of postHookInstances) {
for (const postHookInstance of postHookInstances) {
await this.workspaceQueryHookExplorer.handleHook(
[authContext, objectName, payload],
preHookInstance.instance,
preHookInstance.host,
preHookInstance.isRequestScoped,
postHookInstance.instance,
postHookInstance.host,
postHookInstance.isRequestScoped,
);
}
}
Expand Down

0 comments on commit 60c38f2

Please sign in to comment.