cms/app-client/app/router.js
author Chloe Laisne <chloe.laisne@gmail.com>
Tue, 07 Jun 2016 19:59:30 +0200
changeset 180 6099727d9e13
parent 136 5fed7e1716c2
child 199 b7c691c6179d
permissions -rw-r--r--
Remove discourse model

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

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

Router.map(function() {
  this.route('tabs/detail', { path: '/detail/:document_id' });
  this.route('tabs/langues', { path: '/langues' });
  this.route('tabs/carto', { path: '/cartographie' });
  this.route('tabs/thematiques', { path: '/thematiques' });
  this.route('tabs/discours', { path: '/discours' });
  this.route('tabs/chrono', { path: '/chronologie' });
});

Router.reopen({
  onUrlChange: function() {
  }.observes('currentPath')
});

export default Router;