ba4c53134f
no issue - update imports for `@ember-data` package (https://github.com/emberjs/rfcs/blob/master/text/0395-ember-data-packages.md) - use `computed.reads` where applicable (https://github.com/ember-cli/eslint-plugin-ember/blob/master/docs/rules/require-computed-macros.md) - fix usage of `scheduleOnce` so that functions are only scheduled once (https://github.com/ember-cli/eslint-plugin-ember/blob/master/docs/rules/no-incorrect-calls-with-inline-anonymous-functions.md)
17 lines
462 B
JavaScript
17 lines
462 B
JavaScript
/* eslint-disable camelcase */
|
|
import Model, {attr} from '@ember-data/model';
|
|
import {computed} from '@ember/object';
|
|
|
|
export default Model.extend({
|
|
name: attr('string'),
|
|
description: attr('string'),
|
|
createdAtUTC: attr('moment-utc'),
|
|
updatedAtUTC: attr('moment-utc'),
|
|
createdBy: attr('number'),
|
|
updatedBy: attr('number'),
|
|
|
|
lowerCaseName: computed('name', function () {
|
|
return (this.name || '').toLocaleLowerCase();
|
|
})
|
|
});
|