]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-edit/video-update.module.ts
Replace NSFW with "mature or explicit content"
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-update.module.ts
1 import { NgModule } from '@angular/core'
2
3 import { TagInputModule } from 'ngx-chips'
4
5 import { VideoUpdateRoutingModule } from './video-update-routing.module'
6 import { VideoUpdateComponent } from './video-update.component'
7 import { VideoService } from '../shared'
8 import { SharedModule } from '../../shared'
9
10 @NgModule({
11 imports: [
12 TagInputModule,
13
14 VideoUpdateRoutingModule,
15 SharedModule
16 ],
17
18 declarations: [
19 VideoUpdateComponent
20 ],
21
22 exports: [
23 VideoUpdateComponent
24 ],
25
26 providers: [
27 VideoService
28 ]
29 })
30 export class VideoUpdateModule { }