]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-moderation/shared-moderation.module.ts
Use 3 tables to represent abuses
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-moderation / shared-moderation.module.ts
1
2 import { NgModule } from '@angular/core'
3 import { SharedFormModule } from '../shared-forms/shared-form.module'
4 import { SharedGlobalIconModule } from '../shared-icons'
5 import { SharedMainModule } from '../shared-main/shared-main.module'
6 import { BatchDomainsModalComponent } from './batch-domains-modal.component'
7 import { BlocklistService } from './blocklist.service'
8 import { BulkService } from './bulk.service'
9 import { UserBanModalComponent } from './user-ban-modal.component'
10 import { UserModerationDropdownComponent } from './user-moderation-dropdown.component'
11 import { AbuseService } from './abuse.service'
12 import { VideoBlockComponent } from './video-block.component'
13 import { VideoBlockService } from './video-block.service'
14 import { VideoReportComponent } from './video-report.component'
15
16 @NgModule({
17 imports: [
18 SharedMainModule,
19 SharedFormModule,
20 SharedGlobalIconModule
21 ],
22
23 declarations: [
24 UserBanModalComponent,
25 UserModerationDropdownComponent,
26 VideoBlockComponent,
27 VideoReportComponent,
28 BatchDomainsModalComponent
29 ],
30
31 exports: [
32 UserBanModalComponent,
33 UserModerationDropdownComponent,
34 VideoBlockComponent,
35 VideoReportComponent,
36 BatchDomainsModalComponent
37 ],
38
39 providers: [
40 BlocklistService,
41 BulkService,
42 AbuseService,
43 VideoBlockService
44 ]
45 })
46 export class SharedModerationModule { }