minor cleanup
This commit is contained in:
parent
33ed70caaf
commit
5be2888223
4 changed files with 3 additions and 3 deletions
|
@ -5,6 +5,7 @@ export default DS.Model.extend({
|
|||
password : DS.attr('string'),
|
||||
name : DS.attr('string'),
|
||||
role : DS.attr('string'),
|
||||
canEdit : DS.attr('boolean'),
|
||||
createdAt: DS.attr('date'),
|
||||
updatedAt: DS.attr('date'),
|
||||
deletedAt: DS.attr('date'),
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import DS from 'ember-data';
|
||||
import Ember from 'ember';
|
||||
|
||||
export default DS.RESTAdapter.extend({
|
||||
namespace: function() {
|
||||
|
|
|
@ -18,7 +18,7 @@ export default Ember.Component.extend({
|
|||
addCharacteristic: function() {
|
||||
const c = this.store.createRecord('characteristic', {
|
||||
sortOrder: -999
|
||||
})
|
||||
});
|
||||
const m = this.store.createRecord('measurement', {
|
||||
characteristic: c
|
||||
});
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
{{/link-to}}
|
||||
{{#if model.canEdit}}
|
||||
<br>
|
||||
{{#link-to 'protected.user.edit' model.id class="button-gray smaller"}}
|
||||
{{#link-to 'protected.users.edit' model.id class="button-gray smaller"}}
|
||||
Edit
|
||||
{{/link-to}}
|
||||
{{/if}}
|
||||
|
|
Reference in a new issue