mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-16 00:00:03 +01:00

The context broker is connected via the custom adapter and serializer. At the moment only the entity IDs are shown but the property table is empty. Mirage is disabled.
14 lines
313 B
JavaScript
14 lines
313 B
JavaScript
import Ember from 'ember';
|
|
import config from './config/environment';
|
|
|
|
var Router = Ember.Router.extend({
|
|
location: config.locationType
|
|
});
|
|
|
|
Router.map(function() {
|
|
this.route('lab-mashup', { path: '/' }, function() {
|
|
this.route('entity', { path: '/:entity_id' });
|
|
});
|
|
});
|
|
|
|
export default Router;
|