
admin:mimetypes-add( $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
  xquery version "1.0-ml";
  import module namespace admin = "http://marklogic.com/xdmp/admin"
      at "/MarkLogic/admin.xqy";
  let $config := admin:get-configuration()
  let $mimetype := admin:mimetype("application/foo","foo bar","binary")
  return
  admin:mimetypes-add($config, $mimetype)
  (: returns the new configuration element -- use admin:save-configuration
     to save the changes to the configuration or pass the configuration
     to other Admin API functions to make other changes.  :)