Skip to content

Instantly share code, notes, and snippets.

@krzkrzkrz
Created January 9, 2015 16:34
Show Gist options
  • Save krzkrzkrz/a4b702471fc10b0d76ff to your computer and use it in GitHub Desktop.
Save krzkrzkrz/a4b702471fc10b0d76ff to your computer and use it in GitHub Desktop.
import DS from 'ember-data';
export default DS.ActiveModelAdapter.extend({
namespace: 'api/v1',
host: window.location.origin,
headers: function() {
var headers = {};
headers.Authorization = 'Token access_token=' + this.currentSessionService.token;
headers.X-CSRF-Token = "T/1t661w9KMhKr3RT6QJwzKLfswnGMN1ojHp9DmPsZY=bbb";
return headers;
}.property("currentSessionService.accessToken")
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment