]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/shared/shared.module.ts
Client: Handle NSFW video
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core';
2import { CommonModule } from '@angular/common';
3import { HttpModule } from '@angular/http';
4import { FormsModule, ReactiveFormsModule } from '@angular/forms';
5import { RouterModule } from '@angular/router';
6
7import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe';
8import { KeysPipe } from 'angular-pipes/src/object/keys.pipe';
9import { DropdownModule } from 'ng2-bootstrap/dropdown';
10import { ProgressbarModule } from 'ng2-bootstrap/progressbar';
11import { PaginationModule } from 'ng2-bootstrap/pagination';
12import { ModalModule } from 'ng2-bootstrap/modal';
13import { FileUploadModule } from 'ng2-file-upload/ng2-file-upload';
14import { Ng2SmartTableModule } from 'ng2-smart-table';
15
16import { AUTH_HTTP_PROVIDERS } from './auth';
17import { RestExtractor, RestService } from './rest';
18import { SearchComponent, SearchService } from './search';
19import { UserService } from './users';
20import { VideoAbuseService } from './video-abuse';
21
22@NgModule({
23 imports: [
24 CommonModule,
25 FormsModule,
26 ReactiveFormsModule,
27 HttpModule,
28 RouterModule,
29
30 DropdownModule.forRoot(),
31 ModalModule.forRoot(),
32 PaginationModule.forRoot(),
33 ProgressbarModule.forRoot(),
34
35 FileUploadModule,
36 Ng2SmartTableModule
37 ],
38
39 declarations: [
40 BytesPipe,
41 KeysPipe,
42 SearchComponent
43 ],
44
45 exports: [
46 CommonModule,
47 FormsModule,
48 ReactiveFormsModule,
49 HttpModule,
50 RouterModule,
51
52 DropdownModule,
53 FileUploadModule,
54 ModalModule,
55 PaginationModule,
56 ProgressbarModule,
57 Ng2SmartTableModule,
58 BytesPipe,
59 KeysPipe,
60
61 SearchComponent
62 ],
63
64 providers: [
65 AUTH_HTTP_PROVIDERS,
66 RestExtractor,
67 RestService,
68 SearchService,
69 VideoAbuseService,
70 UserService
71 ]
72})
73export class SharedModule { }