mirror of
https://github.com/flarum/framework.git
synced 2024-12-12 06:03:39 +08:00
27 lines
617 B
JavaScript
27 lines
617 B
JavaScript
import DS from 'ember-data';
|
|
|
|
import stringToColor from 'flarum/utils/string-to-color';
|
|
|
|
export default DS.Model.extend({
|
|
username: DS.attr('string'),
|
|
email: DS.attr('string'),
|
|
password: DS.attr('string'),
|
|
avatarUrl: DS.attr('string'),
|
|
|
|
groups: DS.hasMany('group'),
|
|
|
|
joinTime: DS.attr('date'),
|
|
lastSeenTime: DS.attr('date'),
|
|
readTime: DS.attr('date'),
|
|
|
|
discussionsCount: DS.attr('number'),
|
|
postsCount: DS.attr('number'),
|
|
|
|
canEdit: DS.attr('boolean'),
|
|
canDelete: DS.attr('boolean'),
|
|
|
|
color: Ember.computed('username', function() {
|
|
return '#'+stringToColor(this.get('username'));
|
|
})
|
|
});
|