ENH: Drop Overview and add loading indicators (#49)

This commit is contained in:
Matthew Ryan Dillon 2017-11-30 16:17:34 -07:00 committed by GitHub
parent cb3bc081a6
commit d014fc099c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View file

@ -3,4 +3,8 @@ import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-rout
const { Route } = Ember;
export default Route.extend(AuthenticatedRouteMixin, {});
export default Route.extend(AuthenticatedRouteMixin, {
afterModel() {
this.transitionTo('collections');
},
});