X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared.module.ts;h=99b51aa4e6f2706c4041bb98e03fb2cb4fbf2315;hb=b632e9049fccea12c016556cfef3ab621aa683d2;hp=0f57ef078b18243840f7ebf925da31a2108aeb82;hpb=99fdec464802e5d720fe08ead06b63368b115baf;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts index 0f57ef078..99b51aa4e 100644 --- a/client/src/app/shared/shared.module.ts +++ b/client/src/app/shared/shared.module.ts @@ -1,22 +1,23 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { HttpModule } from '@angular/http'; -import { FormsModule, ReactiveFormsModule } from '@angular/forms'; -import { RouterModule } from '@angular/router'; +import { NgModule } from '@angular/core' +import { CommonModule } from '@angular/common' +import { HttpModule } from '@angular/http' +import { FormsModule, ReactiveFormsModule } from '@angular/forms' +import { RouterModule } from '@angular/router' -import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe'; -import { KeysPipe } from 'angular-pipes/src/object/keys.pipe'; -import { DropdownModule } from 'ng2-bootstrap/dropdown'; -import { ProgressbarModule } from 'ng2-bootstrap/progressbar'; -import { PaginationModule } from 'ng2-bootstrap/pagination'; -import { ModalModule } from 'ng2-bootstrap/modal'; -import { FileUploadModule } from 'ng2-file-upload/ng2-file-upload'; -import { Ng2SmartTableModule } from 'ng2-smart-table'; +import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe' +import { KeysPipe } from 'angular-pipes/src/object/keys.pipe' +import { BsDropdownModule } from 'ngx-bootstrap/dropdown' +import { ProgressbarModule } from 'ngx-bootstrap/progressbar' +import { PaginationModule } from 'ngx-bootstrap/pagination' +import { ModalModule } from 'ngx-bootstrap/modal' +import { FileUploadModule } from 'ng2-file-upload/ng2-file-upload' +import { Ng2SmartTableModule } from 'ng2-smart-table' -import { AUTH_HTTP_PROVIDERS } from './auth'; -import { RestExtractor, RestService } from './rest'; -import { SearchComponent, SearchService } from './search'; -import { VideoAbuseService } from './video-abuse'; +import { AUTH_HTTP_PROVIDERS } from './auth' +import { RestExtractor, RestService } from './rest' +import { SearchComponent, SearchService } from './search' +import { UserService } from './users' +import { VideoAbuseService } from './video-abuse' @NgModule({ imports: [ @@ -26,7 +27,7 @@ import { VideoAbuseService } from './video-abuse'; HttpModule, RouterModule, - DropdownModule.forRoot(), + BsDropdownModule.forRoot(), ModalModule.forRoot(), PaginationModule.forRoot(), ProgressbarModule.forRoot(), @@ -48,7 +49,7 @@ import { VideoAbuseService } from './video-abuse'; HttpModule, RouterModule, - DropdownModule, + BsDropdownModule, FileUploadModule, ModalModule, PaginationModule, @@ -65,7 +66,8 @@ import { VideoAbuseService } from './video-abuse'; RestExtractor, RestService, SearchService, - VideoAbuseService + VideoAbuseService, + UserService ] }) export class SharedModule { }