]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/shared/video-edit.module.ts
Fix human dates in result lists
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / shared / video-edit.module.ts
CommitLineData
2de96f4d
C
1import { NgModule } from '@angular/core'
2
3import { TagInputModule } from 'ngx-chips'
4import { TabsModule } from 'ngx-bootstrap/tabs'
5
cadb46d8 6import { MarkdownService } from '../../shared'
80958c78 7import { SharedModule } from '../../../shared'
cadb46d8 8import { VideoDescriptionComponent } from './video-description.component'
ff249f49 9import { VideoEditComponent } from './video-edit.component'
2de96f4d
C
10
11@NgModule({
12 imports: [
13 TagInputModule,
14 TabsModule.forRoot(),
15
16 SharedModule
17 ],
18
19 declarations: [
ff249f49
C
20 VideoDescriptionComponent,
21 VideoEditComponent
2de96f4d
C
22 ],
23
24 exports: [
25 TagInputModule,
26 TabsModule,
27
ff249f49
C
28 VideoDescriptionComponent,
29 VideoEditComponent
2de96f4d
C
30 ],
31
32 providers: [
2de96f4d
C
33 MarkdownService
34 ]
35})
36export class VideoEditModule { }