X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Badmin%2Fadmin.module.ts;h=eb073f70930fd28ff249df20bf834a0aad983e63;hb=5baee5fca418487e72ddcd6419d31bca8659b668;hp=3c6b7a79384335aeafbd479f79e1975167ed1cb8;hpb=51548b31815c6f96f314ae96588a9adca150519d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+admin/admin.module.ts b/client/src/app/+admin/admin.module.ts index 3c6b7a793..eb073f709 100644 --- a/client/src/app/+admin/admin.module.ts +++ b/client/src/app/+admin/admin.module.ts @@ -1,39 +1,84 @@ import { NgModule } from '@angular/core' -import { TabsModule } from 'ngx-bootstrap/tabs' +import { ConfigComponent, EditCustomConfigComponent } from '@app/+admin/config' +import { ConfigService } from '@app/+admin/config/shared/config.service' +import { TableModule } from 'primeng/table' import { SharedModule } from '../shared' import { AdminRoutingModule } from './admin-routing.module' import { AdminComponent } from './admin.component' -import { FollowersListComponent, FollowingAddComponent, FollowsComponent, FollowService } from './follows' +import { FollowersListComponent, FollowsComponent, VideoRedundanciesListComponent } from './follows' import { FollowingListComponent } from './follows/following-list/following-list.component' -import { UserAddComponent, UserListComponent, UsersComponent, UserService, UserUpdateComponent } from './users' -import { VideoAbuseListComponent, VideoAbusesComponent } from './video-abuses' -import { VideoBlacklistComponent, VideoBlacklistListComponent } from './video-blacklist' +import { UserCreateComponent, UserListComponent, UserPasswordComponent, UsersComponent, UserUpdateComponent } from './users' +import { + ModerationCommentModalComponent, + VideoAbuseListComponent, + VideoBlockListComponent +} from './moderation' +import { ModerationComponent } from '@app/+admin/moderation/moderation.component' +import { RedundancyCheckboxComponent } from '@app/+admin/follows/shared/redundancy-checkbox.component' +import { InstanceAccountBlocklistComponent, InstanceServerBlocklistComponent } from '@app/+admin/moderation/instance-blocklist' +import { JobsComponent } from '@app/+admin/system/jobs/jobs.component' +import { JobService, LogsComponent, LogsService, SystemComponent } from '@app/+admin/system' +import { DebugComponent, DebugService } from '@app/+admin/system/debug' +import { PluginsComponent } from '@app/+admin/plugins/plugins.component' +import { PluginListInstalledComponent } from '@app/+admin/plugins/plugin-list-installed/plugin-list-installed.component' +import { PluginSearchComponent } from '@app/+admin/plugins/plugin-search/plugin-search.component' +import { PluginShowInstalledComponent } from '@app/+admin/plugins/plugin-show-installed/plugin-show-installed.component' +import { SelectButtonModule } from 'primeng/selectbutton' +import { PluginApiService } from '@app/+admin/plugins/shared/plugin-api.service' +import { VideoRedundancyInformationComponent } from '@app/+admin/follows/video-redundancies-list/video-redundancy-information.component' +import { ChartModule } from 'primeng/chart' +import { BatchDomainsModalComponent } from './config/shared/batch-domains-modal.component' +import { VideoAbuseDetailsComponent } from './moderation/video-abuse-list/video-abuse-details.component' @NgModule({ imports: [ AdminRoutingModule, - TabsModule.forRoot(), - SharedModule + + SharedModule, + + TableModule, + SelectButtonModule, + ChartModule ], declarations: [ AdminComponent, FollowsComponent, - FollowingAddComponent, FollowersListComponent, FollowingListComponent, + RedundancyCheckboxComponent, + VideoRedundanciesListComponent, + VideoRedundancyInformationComponent, UsersComponent, - UserAddComponent, + UserCreateComponent, UserUpdateComponent, + UserPasswordComponent, UserListComponent, - VideoBlacklistComponent, - VideoBlacklistListComponent, + ModerationComponent, + VideoBlockListComponent, + VideoAbuseListComponent, + VideoAbuseDetailsComponent, + ModerationCommentModalComponent, + InstanceServerBlocklistComponent, + InstanceAccountBlocklistComponent, + + PluginsComponent, + PluginListInstalledComponent, + PluginSearchComponent, + PluginShowInstalledComponent, + + SystemComponent, + JobsComponent, + LogsComponent, + DebugComponent, + + ConfigComponent, + EditCustomConfigComponent, - VideoAbusesComponent, - VideoAbuseListComponent + BatchDomainsModalComponent ], exports: [ @@ -41,8 +86,11 @@ import { VideoBlacklistComponent, VideoBlacklistListComponent } from './video-bl ], providers: [ - FollowService, - UserService + JobService, + LogsService, + DebugService, + ConfigService, + PluginApiService ] }) export class AdminModule { }