Skip to content

Instantly share code, notes, and snippets.

@alvincrespo
Created November 17, 2017 15:59
Show Gist options
  • Save alvincrespo/ce22650033a88998318a95fc02b2a8fe to your computer and use it in GitHub Desktop.
Save alvincrespo/ce22650033a88998318a95fc02b2a8fe to your computer and use it in GitHub Desktop.
User model
// auth-example-frontend/models/user.js
import DS from 'ember-data';
export default DS.Model.extend({
email: DS.attr('string'),
password: DS.attr('string')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment