1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-16 00:00:03 +01:00
VILLASweb/app/router.js

64 lines
1.9 KiB
JavaScript
Raw Normal View History

2016-07-20 12:25:51 +02:00
/**
* File: router.js
* Author: Markus Grigull <mgrigull@eonerc.rwth-aachen.de>
* Date: 26.06.2016
* Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC
* This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential.
* Unauthorized copying of this file, via any medium is strictly prohibited.
**********************************************************************************/
import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: config.locationType
});
Router.map(function() {
2016-06-26 13:35:06 +02:00
this.route('login');
this.route('logout');
2016-06-26 13:35:06 +02:00
this.route('projects');
this.route('project', function() {
this.route('index', { path: '/:projectid' });
this.route('new');
this.route('edit', { path: '/edit/:projectid' });
this.route('delete', { path: '/delete/:projectid' });
});
this.route('me');
this.route('visualization', function() {
this.route('index', { path: '/:visualizationid' });
this.route('new');
this.route('edit', { path: '/edit/:visualizationid' });
this.route('delete', { path: '/delete/:visualizationid' });
});
this.route('user', function() {
this.route('edit', { path: '/edit/:userid' });
this.route('new');
this.route('delete', { path: '/delete/:userid' });
});
this.route('404', { path: '/*path' });
2016-07-20 16:54:20 +02:00
this.route('simulation-model', function() {
this.route('index', { path: '/:modelid' });
this.route('new', { path: '/new/:simulationid' });
2016-07-20 16:54:20 +02:00
this.route('delete', { path: '/delete/:modelid' });
this.route('edit', { path: '/edit/:modelid' });
});
this.route('simulation-models');
this.route('simulations');
this.route('simulation', function() {
this.route('index', { path: '/:simulationid' });
this.route('delete', { path: '/delete/:simulationid' });
this.route('new');
this.route('edit', { path: '/edit/:simulationid' });
});
});
export default Router;