admin.mimetypesAdd

admin.mimetypesAdd(
   config as element(configuration),
   mimetypes as element(mt.mimetype)[]
) as element(configuration)

Summary

This function adds mimetypes to 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.

Required Privileges

http://marklogic.com/xdmp/privileges/admin/mimetypes

Example

  
  const admin = require('/MarkLogic/admin.xqy');
  var config = admin.getConfiguration()
  var mimetype = admin.mimetype("application/foo","foo bar","binary")
  admin.mimetypesAdd(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.  
  
Powered by MarkLogic Server | Terms of Use | Privacy Policy