mirror of
https://gitlab.silvrtree.co.uk/martind2000/project.git
synced 2025-01-10 21:05:08 +00:00
22 lines
455 B
JavaScript
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;
|