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';
|
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';
|
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,
|
2020-12-14 13:50:37 +00:00
|
|
|
AddonCalendarModule,
|
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,
|
2020-11-19 15:35:17 +00:00
|
|
|
],
|
|
|
|
})
|
|
|
|
export class AddonsModule {}
|