Skip to content
Snippets Groups Projects
Commit e35071a0 authored by Richard Alam's avatar Richard Alam
Browse files

- add API to allow querying for default config.xml

parent 27af71f2
No related branches found
No related tags found
No related merge requests found
......@@ -755,6 +755,37 @@ class ApiController {
}
}
}
def getDefaultConfigXML = {
String API_CALL = "getDefaultConfigXML"
if (StringUtils.isEmpty(params.checksum)) {
invalid("checksumError", "You did not pass the checksum security check")
return
}
// Do we agree on the checksum? If not, complain.
if (! paramsProcessorUtil.isChecksumSame(API_CALL, params.checksum, API_CALL)) {
errors.checksumError()
respondWithErrors(errors)
return
}
String defConfigXML = paramsProcessorUtil.getDefaultConfigXML();
response.addHeader("Cache-Control", "no-cache")
withFormat {
xml {
render(contentType:"text/xml") {
response() {
config(defConfigXML)
}
}
}
}
}
/***********************************************
* CONFIG API
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment