project/app/models/account.js
2016-04-07 16:45:00 +01:00

13 lines
341 B
JavaScript

import DS from 'ember-data';
export default DS.Model.extend({
uid: DS.attr('string'),
login: DS.attr('string'),
forename: DS.attr('string'),
surname: DS.attr('string'),
memberof: DS.attr('string'),
fullName: function() {
return '%@ %@'.fmt(this.get('forename'), this.get('surname'));
}.property('forename', 'surname')
});