diff options
author | Chocobozzz <me@florianbigard.com> | 2021-07-08 10:23:21 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-07-20 15:27:17 +0200 |
commit | d897210c2db1ca2acc1e7b28a13127647ab2222c (patch) | |
tree | d36bcc0d17f1ff3c787beb395175e7a20d36e449 /shared/extra-utils/server | |
parent | 4f2199144e428c16460750305f737b890c1ac322 (diff) | |
download | PeerTube-d897210c2db1ca2acc1e7b28a13127647ab2222c.tar.gz PeerTube-d897210c2db1ca2acc1e7b28a13127647ab2222c.tar.zst PeerTube-d897210c2db1ca2acc1e7b28a13127647ab2222c.zip |
Introduce services command
Diffstat (limited to 'shared/extra-utils/server')
-rw-r--r-- | shared/extra-utils/server/servers.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shared/extra-utils/server/servers.ts b/shared/extra-utils/server/servers.ts index eca0689aa..cb2a8814b 100644 --- a/shared/extra-utils/server/servers.ts +++ b/shared/extra-utils/server/servers.ts | |||
@@ -18,7 +18,7 @@ import { makeGetRequest } from '../requests/requests' | |||
18 | import { SearchCommand } from '../search' | 18 | import { SearchCommand } from '../search' |
19 | import { SocketIOCommand } from '../socket' | 19 | import { SocketIOCommand } from '../socket' |
20 | import { AccountsCommand, BlocklistCommand, SubscriptionsCommand } from '../users' | 20 | import { AccountsCommand, BlocklistCommand, SubscriptionsCommand } from '../users' |
21 | import { LiveCommand } from '../videos' | 21 | import { LiveCommand, ServicesCommand } from '../videos' |
22 | import { ConfigCommand } from './config-command' | 22 | import { ConfigCommand } from './config-command' |
23 | import { ContactFormCommand } from './contact-form-command' | 23 | import { ContactFormCommand } from './contact-form-command' |
24 | import { DebugCommand } from './debug-command' | 24 | import { DebugCommand } from './debug-command' |
@@ -101,6 +101,7 @@ interface ServerInfo { | |||
101 | blocklistCommand?: BlocklistCommand | 101 | blocklistCommand?: BlocklistCommand |
102 | subscriptionsCommand?: SubscriptionsCommand | 102 | subscriptionsCommand?: SubscriptionsCommand |
103 | liveCommand?: LiveCommand | 103 | liveCommand?: LiveCommand |
104 | servicesCommand?: ServicesCommand | ||
104 | } | 105 | } |
105 | 106 | ||
106 | function parallelTests () { | 107 | function parallelTests () { |
@@ -327,6 +328,7 @@ async function runServer (server: ServerInfo, configOverrideArg?: any, args = [] | |||
327 | server.blocklistCommand = new BlocklistCommand(server) | 328 | server.blocklistCommand = new BlocklistCommand(server) |
328 | server.subscriptionsCommand = new SubscriptionsCommand(server) | 329 | server.subscriptionsCommand = new SubscriptionsCommand(server) |
329 | server.liveCommand = new LiveCommand(server) | 330 | server.liveCommand = new LiveCommand(server) |
331 | server.servicesCommand = new ServicesCommand(server) | ||
330 | 332 | ||
331 | res(server) | 333 | res(server) |
332 | }) | 334 | }) |