]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-moderation/shared-moderation.module.ts
Refactor modal buttons style
[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 { SharedVideoCommentModule } from '../shared-video-comment'
7 import { AbuseService } from './abuse.service'
8 import { BatchDomainsModalComponent } from './batch-domains-modal.component'
9 import { BlocklistService } from './blocklist.service'
10 import { BulkService } from './bulk.service'
11 import { AccountReportComponent, CommentReportComponent, VideoReportComponent } from './report-modals'
12 import { UserBanModalComponent } from './user-ban-modal.component'
13 import { UserModerationDropdownComponent } from './user-moderation-dropdown.component'
14 import { VideoBlockComponent } from './video-block.component'
15 import { VideoBlockService } from './video-block.service'
16
17 @NgModule({
18 imports: [
19 SharedMainModule,
20 SharedFormModule,
21 SharedGlobalIconModule,
22 SharedVideoCommentModule
23 ],
24
25 declarations: [
26 UserBanModalComponent,
27 UserModerationDropdownComponent,
28 VideoBlockComponent,
29 VideoReportComponent,
30 BatchDomainsModalComponent,
31 CommentReportComponent,
32 AccountReportComponent
33 ],
34
35 exports: [
36 UserBanModalComponent,
37 UserModerationDropdownComponent,
38 VideoBlockComponent,
39 VideoReportComponent,
40 BatchDomainsModalComponent,
41 CommentReportComponent,
42 AccountReportComponent
43 ],
44
45 providers: [
46 BlocklistService,
47 BulkService,
48 AbuseService,
49 VideoBlockService
50 ]
51 })
52 export class SharedModerationModule { }