X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fcore%2Fcore.module.ts;h=d80f95ed63afcd4fb5d54f91e213dfe643c16706;hb=ab623c0e0b4815bd69a94887241a69aaa857ed26;hp=f51f1920df2a493561e60ecd5363fe750b306d9e;hpb=5beb89f223539f1e415a976ff104f772526b4d20;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/core/core.module.ts b/client/src/app/core/core.module.ts index f51f1920d..d80f95ed6 100644 --- a/client/src/app/core/core.module.ts +++ b/client/src/app/core/core.module.ts @@ -5,14 +5,8 @@ import { CommonModule } from '@angular/common' import { NgModule, Optional, SkipSelf } from '@angular/core' import { BrowserAnimationsModule } from '@angular/platform-browser/animations' import { PeerTubeSocket } from '@app/core/notification/peertube-socket.service' -import { HooksService } from '@app/core/plugins/hooks.service' -import { PluginService } from '@app/core/plugins/plugin.service' -import { UnloggedGuard } from '@app/core/routing/unlogged-guard.service' -import { LoadingBarModule } from '@ngx-loading-bar/core' -import { LoadingBarHttpClientModule } from '@ngx-loading-bar/http-client' -import { LoadingBarRouterModule } from '@ngx-loading-bar/router' +import { HooksService, PluginService } from '@app/core/plugins' import { AuthService } from './auth' -import { ScopedTokensService } from './scoped-tokens' import { ConfirmService } from './confirm' import { CheatSheetComponent } from './hotkeys' import { MenuService } from './menu' @@ -20,12 +14,23 @@ import { throwIfAlreadyLoaded } from './module-import-guard' import { Notifier } from './notification' import { HtmlRendererService, LinkifierService, MarkdownService } from './renderer' import { RestExtractor, RestService } from './rest' -import { LoginGuard, RedirectService, UserRightGuard } from './routing' +import { + HomepageRedirectComponent, + LoginGuard, + MetaGuard, + MetaService, + PeerTubeRouterService, + RedirectService, + ScrollService, + UnloggedGuard, + UserRightGuard +} from './routing' import { CanDeactivateGuard } from './routing/can-deactivate-guard.service' import { ServerConfigResolver } from './routing/server-config-resolver.service' +import { ScopedTokensService } from './scoped-tokens' import { ServerService } from './server' import { ThemeService } from './theme' -import { UserService } from './users' +import { UserLocalStorageService, UserService } from './users' import { LocalStorageService, ScreenService, SessionStorageService } from './wrappers' @NgModule({ @@ -33,9 +38,6 @@ import { LocalStorageService, ScreenService, SessionStorageService } from './wra CommonModule, BrowserAnimationsModule, - LoadingBarHttpClientModule, - LoadingBarRouterModule, - LoadingBarModule, ToastModule, HotkeyModule.forRoot({ @@ -44,16 +46,15 @@ import { LocalStorageService, ScreenService, SessionStorageService } from './wra ], declarations: [ - CheatSheetComponent + CheatSheetComponent, + HomepageRedirectComponent ], exports: [ - LoadingBarHttpClientModule, - LoadingBarModule, - ToastModule, - CheatSheetComponent + CheatSheetComponent, + HomepageRedirectComponent ], providers: [ @@ -78,6 +79,7 @@ import { LocalStorageService, ScreenService, SessionStorageService } from './wra RestService, UserService, + UserLocalStorageService, ScreenService, LocalStorageService, @@ -88,7 +90,12 @@ import { LocalStorageService, ScreenService, SessionStorageService } from './wra MessageService, PeerTubeSocket, ServerConfigResolver, - CanDeactivateGuard + CanDeactivateGuard, + PeerTubeRouterService, + ScrollService, + + MetaService, + MetaGuard ] }) export class CoreModule {