inital empty page
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user