mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 09:32:04 +00:00
13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
![]() |
import Ember from 'ember';
|
||
|
import config from './config/environment';
|
||
|
|
||
|
const Router = Ember.Router.extend({
|
||
|
location: config.locationType,
|
||
|
rootURL: config.rootURL
|
||
|
});
|
||
|
|
||
|
Router.map(function() {
|
||
|
});
|
||
|
|
||
|
export default Router;
|