Mercurial > hg > orthanc
changeset 1369:4460e2622016
more information in /system
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 27 May 2015 10:50:59 +0200 |
parents | feaf2840917c |
children | 7b6f5115607f a1745d9be6e9 |
files | OrthancServer/OrthancRestApi/OrthancRestSystem.cpp |
diffstat | 1 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancServer/OrthancRestApi/OrthancRestSystem.cpp Wed May 20 15:21:26 2015 +0200 +++ b/OrthancServer/OrthancRestApi/OrthancRestSystem.cpp Wed May 27 10:50:59 2015 +0200 @@ -54,9 +54,14 @@ { Json::Value result = Json::objectValue; - result["Version"] = ORTHANC_VERSION; + std::string dbVersion = OrthancRestApi::GetIndex(call).GetGlobalProperty(GlobalProperty_DatabaseSchemaVersion, "0"); + + result["DatabaseVersion"] = boost::lexical_cast<int>(dbVersion); + result["DicomAet"] = Configuration::GetGlobalStringParameter("DicomAet", "ORTHANC"); + result["DicomPort"] = Configuration::GetGlobalIntegerParameter("DicomPort", 4242); + result["HttpPort"] = Configuration::GetGlobalIntegerParameter("HttpPort", 8042); result["Name"] = Configuration::GetGlobalStringParameter("Name", ""); - result["DatabaseVersion"] = boost::lexical_cast<int>(OrthancRestApi::GetIndex(call).GetGlobalProperty(GlobalProperty_DatabaseSchemaVersion, "0")); + result["Version"] = ORTHANC_VERSION; call.GetOutput().AnswerJson(result); }