2020-11-19 15:35:17 +00: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';
|
|
|
|
|
2020-12-18 14:43:52 +00:00
|
|
|
import { AddonBlockModule } from './block/block.module';
|
2020-11-30 16:25:48 +00:00
|
|
|
import { AddonPrivateFilesModule } from './privatefiles/privatefiles.module';
|
2020-12-09 11:59:45 +00:00
|
|
|
import { AddonFilterModule } from './filter/filter.module';
|
2020-12-02 10:05:57 +00:00
|
|
|
import { AddonUserProfileFieldModule } from './userprofilefield/userprofilefield.module';
|
2020-12-11 15:08:35 +00:00
|
|
|
import { AddonBadgesModule } from './badges/badges.module';
|
2020-12-14 13:50:37 +00:00
|
|
|
import { AddonCalendarModule } from './calendar/calendar.module';
|
2021-03-09 15:52:56 +00:00
|
|
|
import { AddonCourseCompletionModule } from './coursecompletion/coursecompletion.module';
|
2020-12-18 14:43:52 +00:00
|
|
|
import { AddonNotificationsModule } from './notifications/notifications.module';
|
2021-01-12 09:38:34 +00:00
|
|
|
import { AddonMessageOutputModule } from './messageoutput/messageoutput.module';
|
2021-01-18 15:40:34 +00:00
|
|
|
import { AddonMessagesModule } from './messages/messages.module';
|
2021-01-27 11:11:02 +00:00
|
|
|
import { AddonModModule } from './mod/mod.module';
|
2021-02-11 10:27:03 +00:00
|
|
|
import { AddonQbehaviourModule } from './qbehaviour/qbehaviour.module';
|
2021-02-15 10:35:41 +00:00
|
|
|
import { AddonQtypeModule } from './qtype/qtype.module';
|
2021-03-08 12:18:17 +00:00
|
|
|
import { AddonBlogModule } from './blog/blog.module';
|
2021-03-10 10:20:24 +00:00
|
|
|
import { AddonRemoteThemesModule } from './remotethemes/remotethemes.module';
|
2021-03-10 15:23:17 +00:00
|
|
|
import { AddonNotesModule } from './notes/notes.module';
|
2021-03-11 14:55:14 +00:00
|
|
|
import { AddonCompetencyModule } from './competency/competency.module';
|
2021-03-15 16:27:11 +00:00
|
|
|
import { AddonStorageManagerModule } from './storagemanager/storagemanager.module';
|
2020-11-19 15:35:17 +00:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2020-12-18 14:43:52 +00:00
|
|
|
AddonBlockModule,
|
2020-12-11 15:08:35 +00:00
|
|
|
AddonBadgesModule,
|
2021-03-08 12:18:17 +00:00
|
|
|
AddonBlogModule,
|
2020-12-14 13:50:37 +00:00
|
|
|
AddonCalendarModule,
|
2021-03-11 14:55:14 +00:00
|
|
|
AddonCompetencyModule,
|
2021-03-09 15:52:56 +00:00
|
|
|
AddonCourseCompletionModule,
|
2021-01-18 15:40:34 +00:00
|
|
|
AddonMessagesModule,
|
2020-11-30 16:25:48 +00:00
|
|
|
AddonPrivateFilesModule,
|
2020-12-09 11:59:45 +00:00
|
|
|
AddonFilterModule,
|
2020-12-02 10:05:57 +00:00
|
|
|
AddonUserProfileFieldModule,
|
2020-12-18 14:43:52 +00:00
|
|
|
AddonNotificationsModule,
|
2021-01-12 09:38:34 +00:00
|
|
|
AddonMessageOutputModule,
|
2021-01-27 11:11:02 +00:00
|
|
|
AddonModModule,
|
2021-03-10 15:23:17 +00:00
|
|
|
AddonNotesModule,
|
2021-02-11 10:27:03 +00:00
|
|
|
AddonQbehaviourModule,
|
2021-02-15 10:35:41 +00:00
|
|
|
AddonQtypeModule,
|
2021-03-10 10:20:24 +00:00
|
|
|
AddonRemoteThemesModule,
|
2021-03-15 16:27:11 +00:00
|
|
|
AddonStorageManagerModule,
|
2020-11-19 15:35:17 +00:00
|
|
|
],
|
|
|
|
})
|
|
|
|
export class AddonsModule {}
|