File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
src/core/features/reportbuilder Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 1313// limitations under the License.
1414
1515import { APP_INITIALIZER , NgModule } from '@angular/core' ;
16- import { RouterModule , Routes } from '@angular/router' ;
16+ import { Routes } from '@angular/router' ;
17+ import { CoreMainMenuRoutingModule } from '@features/mainmenu/mainmenu-routing.module' ;
18+ import { CoreMainMenuTabRoutingModule } from '@features/mainmenu/mainmenu-tab-routing.module' ;
1719import { CoreUserDelegate } from '@features/user/services/user-delegate' ;
1820import { CoreReportBuilderHandler , CoreReportBuilderHandlerService } from './services/handlers/reportbuilder' ;
1921
@@ -25,7 +27,11 @@ const routes: Routes = [
2527] ;
2628
2729@NgModule ( {
28- imports : [ RouterModule . forChild ( routes ) ] ,
30+ imports : [
31+ CoreMainMenuRoutingModule . forChild ( { children : routes } ) ,
32+ CoreMainMenuTabRoutingModule . forChild ( routes ) ,
33+ ] ,
34+ exports : [ CoreMainMenuRoutingModule ] ,
2935 providers : [
3036 {
3137 provide : APP_INITIALIZER ,
You can’t perform that action at this time.
0 commit comments