-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Use jwt instead of session when configuring disable session - Return token in response when configuring disable session - Store token after login
- Loading branch information
1 parent
5cc8696
commit 848c613
Showing
4 changed files
with
109 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,27 @@ | ||
var envConfig = { | ||
QIDO: { | ||
hostName: '127.0.0.1', | ||
port: '9090', | ||
api: 'dicom-web', | ||
hostName: "127.0.0.1", | ||
port: "9090", | ||
api: "dicom-web", | ||
http: "http" | ||
}, | ||
WADO: { | ||
hostName: '127.0.0.1', | ||
port: '9090', | ||
api: 'dicom-web', | ||
hostName: "127.0.0.1", | ||
port: "9090", | ||
api: "dicom-web", | ||
http: "http" | ||
}, | ||
FHIR: { | ||
hostName: '127.0.0.1', | ||
port: '9090', | ||
api: 'api/fhir', | ||
hostName: "127.0.0.1", | ||
port: "9090", | ||
api: "api/fhir", | ||
http: "http" | ||
}, | ||
/** | ||
* *If true, get token from localStorage and add headers for every requests | ||
*/ | ||
jwt: false, | ||
backend: { | ||
baseUrl: "http://localhost:8081" | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters