aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/admin.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-07-10 18:30:27 +0200
committerChocobozzz <chocobozzz@cpy.re>2019-07-24 10:58:16 +0200
commitd00dc28dd73ad9dd419d5a5ac6ac747cefbc6e8b (patch)
treec94c2b22de6707eaafcc4348f69934f265c52f52 /client/src/app/+admin/admin.module.ts
parentad91e7006e41f8ee5b8dcefee30f99e8ca44133a (diff)
downloadPeerTube-d00dc28dd73ad9dd419d5a5ac6ac747cefbc6e8b.tar.gz
PeerTube-d00dc28dd73ad9dd419d5a5ac6ac747cefbc6e8b.tar.zst
PeerTube-d00dc28dd73ad9dd419d5a5ac6ac747cefbc6e8b.zip
WIP plugins: list installed plugins in client
Diffstat (limited to 'client/src/app/+admin/admin.module.ts')
-rw-r--r--client/src/app/+admin/admin.module.ts15
1 files changed, 14 insertions, 1 deletions
diff --git a/client/src/app/+admin/admin.module.ts b/client/src/app/+admin/admin.module.ts
index 9ab883f60..256b7e1f5 100644
--- a/client/src/app/+admin/admin.module.ts
+++ b/client/src/app/+admin/admin.module.ts
@@ -21,11 +21,18 @@ import { InstanceAccountBlocklistComponent, InstanceServerBlocklistComponent } f
21import { JobsComponent } from '@app/+admin/system/jobs/jobs.component' 21import { JobsComponent } from '@app/+admin/system/jobs/jobs.component'
22import { JobService, LogsComponent, LogsService, SystemComponent } from '@app/+admin/system' 22import { JobService, LogsComponent, LogsService, SystemComponent } from '@app/+admin/system'
23import { DebugComponent, DebugService } from '@app/+admin/system/debug' 23import { DebugComponent, DebugService } from '@app/+admin/system/debug'
24import { PluginsComponent } from '@app/+admin/plugins/plugins.component'
25import { PluginListInstalledComponent } from '@app/+admin/plugins/plugin-list-installed/plugin-list-installed.component'
26import { PluginSearchComponent } from '@app/+admin/plugins/plugin-search/plugin-search.component'
27import { PluginShowInstalledComponent } from '@app/+admin/plugins/plugin-show-installed/plugin-show-installed.component'
28import { SelectButtonModule } from 'primeng/primeng'
29import { PluginApiService } from '@app/+admin/plugins/shared/plugin-api.service'
24 30
25@NgModule({ 31@NgModule({
26 imports: [ 32 imports: [
27 AdminRoutingModule, 33 AdminRoutingModule,
28 TableModule, 34 TableModule,
35 SelectButtonModule,
29 SharedModule 36 SharedModule
30 ], 37 ],
31 38
@@ -52,6 +59,11 @@ import { DebugComponent, DebugService } from '@app/+admin/system/debug'
52 InstanceServerBlocklistComponent, 59 InstanceServerBlocklistComponent,
53 InstanceAccountBlocklistComponent, 60 InstanceAccountBlocklistComponent,
54 61
62 PluginsComponent,
63 PluginListInstalledComponent,
64 PluginSearchComponent,
65 PluginShowInstalledComponent,
66
55 SystemComponent, 67 SystemComponent,
56 JobsComponent, 68 JobsComponent,
57 LogsComponent, 69 LogsComponent,
@@ -70,7 +82,8 @@ import { DebugComponent, DebugService } from '@app/+admin/system/debug'
70 JobService, 82 JobService,
71 LogsService, 83 LogsService,
72 DebugService, 84 DebugService,
73 ConfigService 85 ConfigService,
86 PluginApiService
74 ] 87 ]
75}) 88})
76export class AdminModule { } 89export class AdminModule { }