55 lines
1.7 KiB
JavaScript
55 lines
1.7 KiB
JavaScript
/** @type {AppTypes.Config} */
|
|
window.config = {
|
|
routerBasename: '/',
|
|
showStudyList: true,
|
|
extensions: [],
|
|
modes: [],
|
|
// below flag is for performance reasons, but it might not work for all servers
|
|
|
|
showWarningMessageForCrossOrigin: true,
|
|
showCPUFallbackMessage: true,
|
|
showLoadingIndicator: true,
|
|
strictZSpacingForVolumeViewport: true,
|
|
defaultDataSourceName: 'dicomweb',
|
|
dataSources: [
|
|
{
|
|
namespace: '@ohif/extension-default.dataSourcesModule.dicomweb',
|
|
sourceName: 'dicomweb',
|
|
configuration: {
|
|
friendlyName: 'Orthanc Server',
|
|
name: 'Orthanc',
|
|
wadoUriRoot: 'http://127.0.0.1/pacs/dicom-web',
|
|
qidoRoot: 'http://127.0.0.1/pacs/dicom-web',
|
|
wadoRoot: 'http://127.0.0.1/pacs/dicom-web',
|
|
qidoSupportsIncludeField: true,
|
|
supportsReject: true,
|
|
imageRendering: 'wadors',
|
|
thumbnailRendering: 'wadors',
|
|
enableStudyLazyLoad: true,
|
|
supportsFuzzyMatching: true,
|
|
supportsWildcard: true,
|
|
dicomUploadEnabled: true,
|
|
bulkDataURI: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
// This is an array, but we'll only use the first entry for now
|
|
oidc: [
|
|
{
|
|
// ~ REQUIRED
|
|
// Authorization Server URL
|
|
authority: 'http://127.0.0.1/auth/realms/ohif',
|
|
client_id: 'ohif-viewer',
|
|
redirect_uri: 'http://127.0.0.1/callback', // `OHIFStandaloneViewer.js`
|
|
// "Authorization Code Flow"
|
|
// Resource: https://medium.com/@darutk/diagrams-of-all-the-openid-connect-flows-6968e3990660
|
|
response_type: 'code',
|
|
scope: 'openid', // email profile openid
|
|
// ~ OPTIONAL
|
|
post_logout_redirect_uri: '/logout-redirect.html',
|
|
},
|
|
],
|
|
};
|