blob: dbbcef957a23f284e96799df357734b9cd39d29a [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import { AdminResolver } from '@pages/admin/admin.resolver';
import { Routes, RouterModule } from '@angular/router';
import { NgModule } from '@angular/core';
import { AdminGuard } from '@app/shared/guards/admin.guard';
import { AdminComponent } from './admin.component';
const adminRoutes: Routes = [
{
path: '',
component: AdminComponent,
canActivate: [AdminGuard],
resolve: {
admin: AdminResolver,
},
},
];
@NgModule({
imports: [RouterModule.forChild(adminRoutes)],
exports: [RouterModule],
})
export class AdminRoutingModule {}