blob: c0b3bfc496ae1bcf6758cd93af6be174fecbb465 [file] [log] [blame]
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('active');
this.route('completed');
});
export default Router;