inital empty page

This commit is contained in:
Rimian Perkins
2017-02-07 13:56:22 +11:00
parent 3e9d32e21d
commit 8d7b50a7ae
8 changed files with 37 additions and 5 deletions
@@ -0,0 +1,5 @@
export default function() {
this.route('choice', function() {
this.route('form');
});
}
@@ -0,0 +1,7 @@
import { ajax } from 'discourse/lib/ajax';
export default Ember.Route.extend({
model() {
return ajax('/choice/form.json');
}
});
@@ -0,0 +1 @@
<h1>Choice</h1>