
admin.mimetypesDelete( config as element(configuration), mimetypes as element(mt.mimetype)[] ) as element(configuration)
This function deletes mimetypes from the configuration. This function always requires a server restart to take effect.
| Parameters | |
|---|---|
| config | A configuration specification, typically as returned from one of the Admin module functions. |
| mimetypes |
A mimetype specification, typically the result of an
admin:mimetype call.
|
http://marklogic.com/xdmp/privileges/admin/mimetypes
const admin = require('/MarkLogic/admin.xqy');
var config = admin.getConfiguration()
var mimetype = admin.mimetype("application/foo","foo bar","binary")
admin.mimetypesDelete(config, mimetype)
//returns the new configuration element -- use admin.saveConfiguration
//to save the changes to the configuration or pass the configuration
//to other Admin API functions to make other changes.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.