Minor cleanup
This commit is contained in:
parent
ea77042b19
commit
de18cfc949
5 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
import Session from 'simple-auth/session';
|
||||
import parseBase64 from '../utils/parse-base64';
|
||||
import Ember from 'ember';
|
||||
|
||||
var CustomSession = Session.extend({
|
||||
currentUser: function() {
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import Ember from 'ember';
|
||||
import parseBase64 from '../../utils/parse-base64';
|
||||
|
||||
export default Ember.Controller.extend({
|
||||
actions: {
|
||||
|
|
|
@ -14,7 +14,7 @@ export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
|||
},
|
||||
|
||||
actions: {
|
||||
willTransition: function(transition) {
|
||||
willTransition: function(/*transition*/) {
|
||||
let controller = this.get('controller');
|
||||
let species = controller.get('model');
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
|||
},
|
||||
|
||||
actions: {
|
||||
willTransition: function(transition) {
|
||||
willTransition: function(/*transition*/) {
|
||||
let controller = this.get('controller');
|
||||
let strain = controller.get('strain');
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import DS from 'ember-data';
|
||||
import Ember from 'ember';
|
||||
|
||||
export default DS.RESTSerializer.extend({
|
||||
isNewSerializerAPI: true,
|
||||
|
|
Reference in a new issue