comparison Sources/app-config-system.js @ 0:39585ba26f20

initial commit
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 15 Jun 2023 09:48:46 +0200
parents
children cbc4be362700
comparison
equal deleted inserted replaced
-1:000000000000 0:39585ba26f20
1 /**
2 * SPDX-FileCopyrightText: 2023 Sebastien Jodogne, UCLouvain, Belgium,
3 * and 2018-2023 Open Health Imaging Foundation
4 * SPDX-License-Identifier: MIT
5 */
6
7 window.config.routerBasename = '/ohif';
8
9 window.config.dataSources = [
10 {
11 friendlyName: 'Orthanc',
12 namespace: '@ohif/extension-default.dataSourcesModule.dicomweb',
13 sourceName: 'dicomweb',
14 configuration: {
15 name: 'orthanc',
16
17 wadoUriRoot: '../dicom-web',
18 qidoRoot: '../dicom-web',
19 wadoRoot: '../dicom-web',
20
21 qidoSupportsIncludeField: false,
22 supportsReject: false,
23 imageRendering: 'wadors',
24 thumbnailRendering: 'wadors',
25 enableStudyLazyLoad: true,
26 supportsFuzzyMatching: false,
27 supportsWildcard: true,
28 staticWado: true,
29 singlepart: 'bulkdata'
30 }
31 }
32 ];
33
34 window.config.defaultDataSourceName = 'dicomweb';