* Rebased to have just the static view changes * Changes based on the PR * Couple more changes for the PR * Removed an extraneous log * Fix the study worklist display when returning to the page * Added some documentation on the static wado data source setup, and a bounds check change on the Queue test which was failing * PR updates - change the undefined study description to '' and remove the aws deploy * Fixed the e2e tests to actually pass/fail correctly on actual results
30 lines
804 B
JavaScript
30 lines
804 B
JavaScript
window.config = {
|
|
routerBasename: '/',
|
|
// whiteLabelling: {},
|
|
extensions: [],
|
|
modes: [],
|
|
showStudyList: true,
|
|
// filterQueryParam: false,
|
|
dataSources: [
|
|
{
|
|
friendlyName: 'dcmjs DICOMWeb Server',
|
|
namespace: 'org.ohif.default.dataSourcesModule.dicomweb',
|
|
sourceName: 'dicomweb',
|
|
configuration: {
|
|
name: 'DCM4CHEE',
|
|
wadoUriRoot: 'http://localhost:5985',
|
|
qidoRoot: 'http://localhost:5985',
|
|
wadoRoot: 'http://localhost:5985',
|
|
qidoSupportsIncludeField: true,
|
|
supportsReject: true,
|
|
imageRendering: 'wadouri',
|
|
thumbnailRendering: 'wadouri',
|
|
enableStudyLazyLoad: true,
|
|
supportsFuzzyMatching: false,
|
|
supportsWildcard: false,
|
|
},
|
|
},
|
|
],
|
|
defaultDataSourceName: 'dicomweb',
|
|
};
|