mirror of
https://gitlab.silvrtree.co.uk/martind2000/project.git
synced 2025-01-11 04:55:09 +00:00
13 lines
341 B
JavaScript
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')
|
|
});
|