Skip to content

Instantly share code, notes, and snippets.

@CostaRico
Created March 18, 2015 11:48
Show Gist options
  • Save CostaRico/5876c168204010e4746e to your computer and use it in GitHub Desktop.
Save CostaRico/5876c168204010e4746e to your computer and use it in GitHub Desktop.
Dasherize
App.ApplicationAdapter = DS.RESTAdapter.extend({
namespace: 'api',
pathForType: function(type) {
var dasherized = Ember.String.dasherize(type);
return Ember.String.pluralize(dasherized);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment