-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create a new orchestration config to save bundles to ecr-viewer (#2853)
* Create a new orchestration config to save bundles to ecr-viewer * Remove old config * Remove some subfolders * Update tests to handle updated save call. * Update tests to handle new logic in save endpoint. * Fix how to determine if a message is a bundle * Fix tests for new logic in save endpoint * Make converting eicr the default behaviour
- Loading branch information
1 parent
7d7d27e
commit bae4e0c
Showing
6 changed files
with
116 additions
and
40 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
28 changes: 28 additions & 0 deletions
28
containers/orchestration/app/custom_configs/save-bundle-to-ecr-viewer.json
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"workflow": [ | ||
{ | ||
"name": "metadata_values", | ||
"service": "message_parser", | ||
"endpoint": "/parse_message", | ||
"params": { | ||
"message_format": "fhir", | ||
"parsing_schema_name": "ecr_viewer_metadata.json" | ||
} | ||
}, | ||
{ | ||
"name:": "save_bundle", | ||
"service": "save_bundle", | ||
"endpoint": "/api/save-fhir-data", | ||
"params": { | ||
"saveSource": "postgres" | ||
}, | ||
"previous_response_to_param_mapping": { | ||
"metadata_values": "metadata" | ||
} | ||
} | ||
], | ||
"outputs": [ | ||
"metadata_values" | ||
], | ||
"default-response": false | ||
} |
File renamed without changes.
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