Initial commit

This commit is contained in:
jar3b
2016-04-25 18:31:43 +03:00
parent 53d15517f7
commit 9718584ced
28 changed files with 262 additions and 7 deletions

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

@@ -0,0 +1,7 @@
import Ember from 'ember';
export default Ember.Route.extend({
beforeModel() {
this.transitionTo('search');
}
});

4
app/routes/search.js Normal file
View File

@@ -0,0 +1,4 @@
import Ember from 'ember';
export default Ember.Route.extend({
});