File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212- Settings page now warns if Embedded Git is not the configured source control extension (#857 )
1313- Settings page now has option to switch namespace (#856 )
1414- SourceControl.Git.Settings is now documented as part of the public API to allow programmatic configuration of settings (#262 )
15+ - Newly configured instances start with default mappings for ESD, LUT and HL7 when relevant (#724 )
1516- New setting to define an SSH client configuration file for connections to SSH remotes (#293 )
1617
1718### Fixed
Original file line number Diff line number Diff line change @@ -3077,6 +3077,14 @@ ClassMethod SetDefaultMappings(mappingsNode As %String)
30773077 set @mappingsNode @(" MAC" ," *" )=" rtn/"
30783078 set @mappingsNode @(" DFI" ," *" )=" dfi/"
30793079 set @mappingsNode @(" PTD" ," *" )=" ptd/"
3080+ set @mappingsNode @(" ESD" ," *" )=" config/<env>/"
3081+ // for HealthShare, HealthConnect, or IRIS for Health
3082+ if ($System .Version .GetISCProduct () = 3 ) || $listfind ($System .Version .GetISCComponents (4 )," Health" ) {
3083+ set @mappingsNode @(" HL7" ," *" ) = " data/hl7/"
3084+ set @mappingsNode @(" HL7" ," *" ," NoFolders" ) = 1
3085+ set @mappingsNode @(" LUT" ," *" ) = " data/lut/"
3086+ set @mappingsNode @(" LUT" ," *" ," NoFolders" ) = 1
3087+ }
30803088}
30813089
30823090ClassMethod PrintStreams (streams ... As %Stream .FileCharacter )
You can’t perform that action at this time.
0 commit comments