Skip to content

Commit

Permalink
Merge branch 'chore-update-oh-yaml' into feature/OH2-287-admin-user-g…
Browse files Browse the repository at this point in the history
…roup-crud
  • Loading branch information
gasp committed Sep 19, 2024
2 parents e7a8476 + bdf46a4 commit be0566b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/generated/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,16 +138,16 @@ export class BaseAPI {
.forEach((mw) => (request = mw.pre!(request)));
return request;
}),
concatMap((args) =>
ajax(args).pipe(
map((response) => {
this.middleware
.filter((item) => item.post)
.forEach((mw) => (response = mw.post!(response)));
return response;
})
)
);
concatMap((args) =>
ajax(args).pipe(
map((response) => {
this.middleware
.filter((item) => item.post)
.forEach((mw) => (response = mw.post!(response)));
return response;
})
)
)
);

/**
Expand Down

0 comments on commit be0566b

Please sign in to comment.