Skip to content

Instantly share code, notes, and snippets.

@sio4
Forked from marcoow/authenticated_rest_adapter.js
Created December 10, 2015 03:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sio4/13642e51e61033658356 to your computer and use it in GitHub Desktop.
Save sio4/13642e51e61033658356 to your computer and use it in GitHub Desktop.
custom REST adapter for ember-data that sends the authentication token in a header
App.AuthenticatedRESTAdapter = DS.RESTAdapter.extend({
ajax: function(url, type, hash) {
hash = hash || {};
hash.headers = hash.headers || {};
hash.headers['X-AUTHENTICATION-TOKEN'] = this.authToken;
return this._super(url, type, hash);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment