
admin.mimetypesAdd( config as element(configuration), mimetypes as element(mt.mimetype)[] ) as element(configuration)
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.
       | 
	  
http://marklogic.com/xdmp/privileges/admin/mimetypes  
  const admin = require('/MarkLogic/admin.xqy');
  const config = admin.getConfiguration()
  const 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.