]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared.module.ts
Client: check token valitidy at startup
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared.module.ts
CommitLineData
693b1aba
C
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';
99fdec46 8import { KeysPipe } from 'angular-pipes/src/object/keys.pipe';
d396a937
C
9import { DropdownModule } from 'ng2-bootstrap/dropdown';
10import { ProgressbarModule } from 'ng2-bootstrap/progressbar';
11import { PaginationModule } from 'ng2-bootstrap/pagination';
12import { ModalModule } from 'ng2-bootstrap/modal';
693b1aba 13import { FileUploadModule } from 'ng2-file-upload/ng2-file-upload';
28798b5d 14import { Ng2SmartTableModule } from 'ng2-smart-table';
693b1aba
C
15
16import { AUTH_HTTP_PROVIDERS } from './auth';
17import { RestExtractor, RestService } from './rest';
18import { SearchComponent, SearchService } from './search';
e2a2d6c8 19import { UserService } from './users';
11ac88de 20import { VideoAbuseService } from './video-abuse';
693b1aba
C
21
22@NgModule({
23 imports: [
24 CommonModule,
25 FormsModule,
26 ReactiveFormsModule,
27 HttpModule,
28 RouterModule,
29
d396a937
C
30 DropdownModule.forRoot(),
31 ModalModule.forRoot(),
32 PaginationModule.forRoot(),
33 ProgressbarModule.forRoot(),
34
28798b5d
C
35 FileUploadModule,
36 Ng2SmartTableModule
693b1aba
C
37 ],
38
39 declarations: [
40 BytesPipe,
99fdec46 41 KeysPipe,
693b1aba
C
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,
28798b5d 57 Ng2SmartTableModule,
693b1aba 58 BytesPipe,
99fdec46 59 KeysPipe,
693b1aba
C
60
61 SearchComponent
62 ],
63
64 providers: [
65 AUTH_HTTP_PROVIDERS,
66 RestExtractor,
67 RestService,
11ac88de 68 SearchService,
e2a2d6c8
C
69 VideoAbuseService,
70 UserService
693b1aba
C
71 ]
72})
73export class SharedModule { }