cibernox/ember-power-select

View on GitHub
test-app/app/models/user.js

Summary

Maintainability
A
1 hr
Test Coverage
import Model, { attr, hasMany } from '@ember-data/model';

export default class UserModel extends Model {
  @attr('string') name;
  @attr('number') age;
  @hasMany('pet', { async: true, inverse: 'owner' }) pets;
}