I have the following user model:
var UserModel = Backbone.Model.extend({
urlRoot: 'user',
defaults: {
fullName: null,
email: null,
password: null
}
});
Now we can CRUD (sign up, update information, delete, and get a user) but what about:
- forgot password
- activate account
How would I expand my UserModel to make this possible?