2021-02-10 10:42:32 +01:00
|
|
|
// (C) Copyright 2015 Moodle Pty Ltd.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { RouterModule, Routes } from '@angular/router';
|
|
|
|
|
2023-03-20 12:36:04 +01:00
|
|
|
import { CoreUserParticipantsPage } from './pages/participants/participants.page';
|
2021-11-04 10:53:50 +01:00
|
|
|
import { conditionalRoutes } from '@/app/app-routing.module';
|
|
|
|
import { CoreScreen } from '@services/screen';
|
2023-03-20 12:36:04 +01:00
|
|
|
import { CoreUserParticipantsPageModule } from '@features/user/pages/participants/participants.module';
|
2021-02-10 10:42:32 +01:00
|
|
|
|
|
|
|
const routes: Routes = [
|
|
|
|
{
|
|
|
|
path: '',
|
|
|
|
component: CoreUserParticipantsPage,
|
2021-11-04 10:53:50 +01:00
|
|
|
children: conditionalRoutes([
|
2021-02-10 10:42:32 +01:00
|
|
|
{
|
|
|
|
path: ':userId',
|
2023-01-25 11:08:36 +01:00
|
|
|
loadChildren: () => import('@features/user/user-profile-lazy.module').then(m => m.CoreUserProfileLazyModule),
|
2021-02-10 10:42:32 +01:00
|
|
|
},
|
2021-11-04 10:53:50 +01:00
|
|
|
], () => CoreScreen.isTablet),
|
2021-02-10 10:42:32 +01:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
RouterModule.forChild(routes),
|
2023-03-20 12:36:04 +01:00
|
|
|
CoreUserParticipantsPageModule,
|
2021-02-10 10:42:32 +01:00
|
|
|
],
|
|
|
|
})
|
|
|
|
export class CoreUserCourseLazyModule {}
|