cms/app-client/app/router.js
changeset 5 d4b3da0dadc9
child 16 70e9a764d6d7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/app/router.js	Fri Nov 06 15:37:09 2015 +0100
@@ -0,0 +1,13 @@
+import Ember from 'ember';
+import config from './config/environment';
+
+var Router = Ember.Router.extend({
+  location: config.locationType
+});
+
+Router.map(function() {
+  this.route('first-page');
+  this.route('second-page');
+});
+
+export default Router;