project/app/router.js
2016-04-07 16:45:00 +01:00

22 lines
455 B
JavaScript

import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: config.locationType
});
Router.map(function() {
this.route('index', {path: '/'});
this.route('login');
this.route('auth-error');
this.route('about');
this.route('signup');
this.route('profile');
this.route('company');
this.route('newcompany');
this.route('venue');
this.route('pages');
});
export default Router;