mirror of
https://gitlab.silvrtree.co.uk/martind2000/aodb.git
synced 2025-02-10 11:49:16 +00:00
15 lines
409 B
TypeScript
15 lines
409 B
TypeScript
|
export class Routes {
|
||
|
static $inject: Array<string> = ['$stateProvider'];
|
||
|
|
||
|
constructor($stateProvider: ng.ui.IStateProvider) {
|
||
|
$stateProvider.state('chroma.site-selection', {
|
||
|
url: '/site-selection',
|
||
|
views: {
|
||
|
'content': {
|
||
|
template: '<chroma:Site-Selection></chroma:Site-Selection>'
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|