`import DS from 'ember-data'` `import config from 'travis/config/environment'` Adapter = DS.ActiveModelAdapter.extend host: config.apiEndpoint ajaxOptions: (url, type, options) -> hash = @_super(url, type, options) hash.headers ||= {} hash.headers['accept'] = 'application/json; version=2' if token = Travis.sessionStorage.getItem('travis.token') hash.headers['Authorization'] ||= "token #{token}" hash `export default Adapter`