diff options
Diffstat (limited to 'shared/server-commands/server/server.ts')
-rw-r--r-- | shared/server-commands/server/server.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/shared/server-commands/server/server.ts b/shared/server-commands/server/server.ts index c05d16ad2..2b4c9c9f8 100644 --- a/shared/server-commands/server/server.ts +++ b/shared/server-commands/server/server.ts | |||
@@ -37,6 +37,7 @@ import { ContactFormCommand } from './contact-form-command' | |||
37 | import { DebugCommand } from './debug-command' | 37 | import { DebugCommand } from './debug-command' |
38 | import { FollowsCommand } from './follows-command' | 38 | import { FollowsCommand } from './follows-command' |
39 | import { JobsCommand } from './jobs-command' | 39 | import { JobsCommand } from './jobs-command' |
40 | import { MetricsCommand } from './metrics-command' | ||
40 | import { ObjectStorageCommand } from './object-storage-command' | 41 | import { ObjectStorageCommand } from './object-storage-command' |
41 | import { PluginsCommand } from './plugins-command' | 42 | import { PluginsCommand } from './plugins-command' |
42 | import { RedundancyCommand } from './redundancy-command' | 43 | import { RedundancyCommand } from './redundancy-command' |
@@ -104,6 +105,7 @@ export class PeerTubeServer { | |||
104 | debug?: DebugCommand | 105 | debug?: DebugCommand |
105 | follows?: FollowsCommand | 106 | follows?: FollowsCommand |
106 | jobs?: JobsCommand | 107 | jobs?: JobsCommand |
108 | metrics?: MetricsCommand | ||
107 | plugins?: PluginsCommand | 109 | plugins?: PluginsCommand |
108 | redundancy?: RedundancyCommand | 110 | redundancy?: RedundancyCommand |
109 | stats?: StatsCommand | 111 | stats?: StatsCommand |
@@ -377,6 +379,7 @@ export class PeerTubeServer { | |||
377 | this.debug = new DebugCommand(this) | 379 | this.debug = new DebugCommand(this) |
378 | this.follows = new FollowsCommand(this) | 380 | this.follows = new FollowsCommand(this) |
379 | this.jobs = new JobsCommand(this) | 381 | this.jobs = new JobsCommand(this) |
382 | this.metrics = new MetricsCommand(this) | ||
380 | this.plugins = new PluginsCommand(this) | 383 | this.plugins = new PluginsCommand(this) |
381 | this.redundancy = new RedundancyCommand(this) | 384 | this.redundancy = new RedundancyCommand(this) |
382 | this.stats = new StatsCommand(this) | 385 | this.stats = new StatsCommand(this) |