-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
search filters: refactoring to be more generic
The mocklab service no longer exists. Its data have been migrated to the new wiremock service. * Fixes api mock for the tester. * Changes search filters processing and display. * Updates search filters on the document route. Co-Authored-by: Bertrand Zuchuat <[email protected]>
- Loading branch information
1 parent
ff17035
commit cb3c8ba
Showing
8 changed files
with
150 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
{ | ||
"/api/*": { | ||
"target": "https://l985g.mocklab.io", | ||
"target": "https://l985g.wiremockapi.cloud", | ||
"secure": false, | ||
"logLevel": "debug", | ||
"changeOrigin": true, | ||
"pathRewrite": { | ||
"^/api": "https://l985g.mocklab.io/api" | ||
"^/api": "https://l985g.wiremockapi.cloud/api" | ||
} | ||
}, | ||
"/schemas/*": { | ||
"target": "https://l985g.mocklab.io", | ||
"target": "https://l985g.wiremockapi.cloud", | ||
"secure": false, | ||
"logLevel": "debug", | ||
"changeOrigin": true, | ||
"pathRewrite": { | ||
"^/schemas": "https://l985g.mocklab.io/schemas" | ||
"^/schemas": "https://l985g.wiremockapi.cloud/schemas" | ||
} | ||
} | ||
} |