Skip to content

Instantly share code, notes, and snippets.

@ksol
Created June 27, 2014 13:53
Show Gist options
  • Select an option

  • Save ksol/b52cf88899635ea72fb8 to your computer and use it in GitHub Desktop.

Select an option

Save ksol/b52cf88899635ea72fb8 to your computer and use it in GitHub Desktop.
Override Ember Data application adapter to force the use of .json extension
MyApp.ApplicationAdapter = DS.RESTAdapter.extend({
buildURL: function() {
var base;
base = this._super.apply(this, arguments);
return "" + base + ".json";
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment