Add version endpoint

This commit is contained in:
Lars Lehmann
2022-04-25 22:44:41 +02:00
parent 374cc64601
commit 76ec0e888b
2 changed files with 25 additions and 0 deletions

View File

@@ -1472,6 +1472,10 @@ if (isset($_GET['query'])) {
'solr_documents' => $solr_documents
));
break;
case "version":
echo json_encode(array(
'version' => $GLOBALS['MAILCOW_GIT_VERSION']
));
}
}
break;