mirror of
https://github.com/flarum/core.git
synced 2025-08-06 16:36:47 +02:00
Hello world!
This commit is contained in:
21
ember/app/models/user.js
Normal file
21
ember/app/models/user.js
Normal file
@@ -0,0 +1,21 @@
|
||||
import Ember from 'ember';
|
||||
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()
|
||||
});
|
Reference in New Issue
Block a user