Cleaned up scientific naming.

This commit is contained in:
Matthew Dillon 2015-03-27 14:04:38 -08:00
parent d587f14af4
commit fdc29a6baa
9 changed files with 49 additions and 12 deletions

View file

@ -12,5 +12,8 @@ export default DS.Model.extend({
createdAt: DS.attr('date'),
updatedAt: DS.attr('date'),
deletedAt: DS.attr('date'),
totalMeasurements: DS.attr('number')
totalMeasurements: DS.attr('number'),
fullName: Ember.computed('speciesName', 'strainName', function() {
return this.get('speciesName') + ' (' + this.get('strainName') + ')';
})
});