hummingbird-me/hummingbird

View on GitHub
frontend/app/models/casting.js

Summary

Maintainability
A
1 hr
Test Coverage
import DS from 'ember-data';

export default DS.Model.extend({
  role: DS.attr('string'),
  language: DS.attr('string'),
  character: DS.belongsTo('character'),
  person: DS.belongsTo('person')
});