Linting
This commit is contained in:
parent
bcd2bbb4c4
commit
d3355370fd
6 changed files with 4 additions and 10 deletions
|
@ -1,5 +1,3 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export function initialize(container, application) {
|
||||
application.inject('session:custom', '_store', 'service:store');
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ import Ember from 'ember';
|
|||
export default Ember.Controller.extend({
|
||||
actions: {
|
||||
delete: function() {
|
||||
this.get('model').destroyRecord()
|
||||
this.get('model').destroyRecord();
|
||||
this.transitionToRoute('protected.characteristics.index');
|
||||
},
|
||||
},
|
||||
|
|
|
@ -7,7 +7,7 @@ export default Ember.Route.extend({
|
|||
let user_id = transition.params['protected.users.edit'].user_id;
|
||||
|
||||
this.get('session.currentUser').then((user) => {
|
||||
if (user.get('id') !== user_id || user.get('isAdmin')) {
|
||||
if (user.get('id') !== user_id && !user.get('isAdmin')) {
|
||||
this.transitionTo('protected.users.index');
|
||||
}
|
||||
});
|
||||
|
|
|
@ -9,7 +9,7 @@ export default Ember.Route.extend({
|
|||
if (!currentUser.get('isAdmin') && currentUser.get('id') !== user_id) {
|
||||
this.transitionTo('protected.users.index');
|
||||
}
|
||||
})
|
||||
});
|
||||
},
|
||||
|
||||
model: function(params) {
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
isAdmin: Ember.computed('currentUser', function() {
|
||||
return this.get('currentUser.role') == 'A';
|
||||
}),
|
||||
|
||||
roles: Ember.String.w('A R W'),
|
||||
|
||||
actions: {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<div data-row-span="1">
|
||||
<div data-field-span="1">
|
||||
<label>Role</label>
|
||||
{{#if isAdmin}}
|
||||
{{#if session.currentUser.isAdmin}}
|
||||
<select onchange={{action (mut user.role) value="target.value"}}>
|
||||
{{#each roles as |roleChoice|}}
|
||||
<option value={{roleChoice}} selected={{equal user.role roleChoice}}>{{roleChoice}}</option>
|
||||
|
|
Reference in a new issue