mirror of
https://github.com/flarum/framework.git
synced 2024-12-02 15:03:44 +08:00
21 lines
482 B
JavaScript
21 lines
482 B
JavaScript
import DS from 'ember-data';
|
|
|
|
export default DS.Model.extend({
|
|
|
|
username: DS.attr('string'),
|
|
avatarUrl: DS.attr('string'),
|
|
joinTime: DS.attr('date'),
|
|
lastSeenTime: DS.attr('date'),
|
|
discussionsCount: DS.attr('number'),
|
|
postsCount: DS.attr('number'),
|
|
|
|
canEdit: DS.attr('boolean'),
|
|
canDelete: DS.attr('boolean'),
|
|
|
|
groups: DS.hasMany('group'),
|
|
|
|
avatarNumber: function() {
|
|
return Math.random() > 0.3 ? Math.floor(Math.random() * 19) + 1 : null;
|
|
}.property()
|
|
});
|