im building a password update module on my Ember App. My API it's designed as:
PUT users/:id/password
so you should pass
{
currentpass: "123456",
newpass: "123456"
}
Is it possible and recommendable to use Ember DS for this case? What approach do you guys recommend? A different API design? no Ember Data ?
Regards!
Ember.$.post()(jQuerypost()) for this purpose. But you hardly need Ember at all for this. Ember-data will work well for you as soon as you are doing more with the user, such as changing the user name, displaying the user info in multiple templates, looking at the user's posts/comments/etc. - pauldoerwaldember-cliand has a lot of community support - Sid