2024-08-22 17:57:53 +00:00
|
|
|
import EmberRouter from '@ember/routing/router';
|
2024-09-18 11:49:23 +00:00
|
|
|
import config from 'frontend-reactive/config/environment';
|
2024-08-22 17:57:53 +00:00
|
|
|
|
|
|
|
export default class Router extends EmberRouter {
|
|
|
|
location = config.locationType;
|
|
|
|
rootURL = config.rootURL;
|
|
|
|
}
|
|
|
|
|
|
|
|
Router.map(function () {
|
2024-09-18 11:49:23 +00:00
|
|
|
// Add route declarations here
|
2024-08-22 17:57:53 +00:00
|
|
|
});
|