This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/models/user.js
Matthew Dillon 21e0e6c624 Linting
2015-11-12 05:54:18 -07:00

49 lines
1 KiB
JavaScript

import Ember from 'ember';
import DS from 'ember-data';
const { Model, attr } = DS;
const { computed } = Ember;
export default Model.extend({
email : attr('string'),
password : attr('string'),
name : attr('string'),
role : attr('string'),
canEdit : attr('boolean'),
createdAt: attr('date'),
updatedAt: attr('date'),
isAdmin: computed('role', function() {
return this.get('role') === 'A';
}),
isWriter: computed('role', function() {
return this.get('role') === 'W';
}),
isReader: computed('role', function() {
return this.get('role') === 'R';
}),
fullRole: computed('role', function() {
const role = this.get('role');
if (role === 'R') {
return 'Read-Only';
} else if (role === 'W') {
return 'Write';
} else if (role === 'A') {
return 'Admin';
} else {
return 'Error';
}
}),
canWrite: computed('role', function() {
return this.get('role') !== 'R';
}),
metaData: computed('canWrite', function() {
return { 'canAdd': this.get('canWrite') };
}),
});