dakrone / es-mode

An Emacs major mode for interacting with Elasticsearch
GNU General Public License v3.0
195 stars 34 forks source link

Customize els headers #44

Closed ptpt closed 7 years ago

ptpt commented 7 years ago

This PR enables requests to be customized with additional headers like authorization.

Example

(add-hook
 'es-mode-hook
 (lambda ()
   (add-to-list 'es-default-headers
                '("Authorization" . "Basic XXXX"))))
dakrone commented 7 years ago

Merged, thank you @ptpt!