Rough cut: compare.

This commit is contained in:
Matthew Dillon 2015-06-17 14:40:28 -08:00
parent adda1291c6
commit 30f8e89c40
10 changed files with 140 additions and 9 deletions

View file

@ -1,4 +1,8 @@
import Ember from 'ember';
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
export default Ember.Route.extend(AuthenticatedRouteMixin);
export default Ember.Route.extend(AuthenticatedRouteMixin, {
beforeModel: function() {
this.transitionTo('compare');
}
});