Skip to content

Commit

Permalink
adding config
Browse files Browse the repository at this point in the history
Signed-off-by: Neil South <[email protected]>
  • Loading branch information
neildsouth committed Nov 30, 2023
1 parent 595048f commit 92a7f98
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/Common/Configuration/MessageBrokerConfigurationKeys.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,5 +105,13 @@ public class MessageBrokerConfigurationKeys
/// </summary>
[ConfigurationKeyName("exportHl7")]
public string ExportHL7 { get; set; } = "md.export.hl7";


/// <summary>
/// Gets or sets the topic for publishing export complete requests.
/// Defaults to `md_export_complete`.
/// </summary>
[ConfigurationKeyName("exportHl7Complete")]
public string ExportHl7Complete { get; set; } = "md.export.hl7complete";
}
}
3 changes: 2 additions & 1 deletion src/WorkflowManager/WorkflowManager/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@
"exportRequestPrefix": "md.export.request",
"callbackRequest": "md.tasks.callback",
"aideClinicalReviewRequest": "aide.clinical_review.request",
"exportHl7": "md.export.hl7"
"exportHl7": "md.export.hl7",
"exportHl7Complete": "md.export.hl7complete"
},
"dicomAgents": {
"dicomWebAgentName": "monaidicomweb",
Expand Down

0 comments on commit 92a7f98

Please sign in to comment.