server/bo_client/app/router.js
author ymh <ymh.work@gmail.com>
Thu, 12 May 2016 11:19:26 +0200
changeset 161 5f011170de74
parent 136 5fed7e1716c2
child 263 3deace9204de
permissions -rw-r--r--
correct download of discourses fxtures

import Ember from 'ember';
import config from './config/environment';

const Router = Ember.Router.extend({
  location: config.locationType
});

Router.map(function() {
  this.route('doc', { path: '/doc/:doc_id' });
});

export default Router;