Load Colossians 1:1 when the site loads so that we avoid a mostly blank page

This commit is contained in:
Leonard Smith 2020-10-14 12:16:34 -05:00
parent 7d71abe814
commit 677425b9d3
1 changed files with 7 additions and 0 deletions

7
app/routes/index.js Normal file
View File

@ -0,0 +1,7 @@
import Route from '@ember/routing/route';
export default class IndexRoute extends Route {
beforeModel(/* transition */) {
this.transitionTo('verse', 'colossians-1-1');
}
}