server/bo_client/app/router.js
author Chloe Laisne <chloe.laisne@gmail.com>
Sun, 02 Oct 2016 15:24:56 +0200
changeset 311 f4327199e8f0
parent 263 3deace9204de
permissions -rw-r--r--
Solve count value on discourses

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

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

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

export default Router;