aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/server-commands/src/server/server.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/server-commands/src/server/server.ts')
-rw-r--r--packages/server-commands/src/server/server.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/server-commands/src/server/server.ts b/packages/server-commands/src/server/server.ts
index 57a897c17..3911a6fad 100644
--- a/packages/server-commands/src/server/server.ts
+++ b/packages/server-commands/src/server/server.ts
@@ -30,6 +30,7 @@ import {
30 ChangeOwnershipCommand, 30 ChangeOwnershipCommand,
31 ChannelsCommand, 31 ChannelsCommand,
32 ChannelSyncsCommand, 32 ChannelSyncsCommand,
33 ChaptersCommand,
33 CommentsCommand, 34 CommentsCommand,
34 HistoryCommand, 35 HistoryCommand,
35 ImportsCommand, 36 ImportsCommand,
@@ -152,6 +153,7 @@ export class PeerTubeServer {
152 videoPasswords?: VideoPasswordsCommand 153 videoPasswords?: VideoPasswordsCommand
153 154
154 storyboard?: StoryboardCommand 155 storyboard?: StoryboardCommand
156 chapters?: ChaptersCommand
155 157
156 runners?: RunnersCommand 158 runners?: RunnersCommand
157 runnerRegistrationTokens?: RunnerRegistrationTokensCommand 159 runnerRegistrationTokens?: RunnerRegistrationTokensCommand
@@ -442,6 +444,7 @@ export class PeerTubeServer {
442 this.registrations = new RegistrationsCommand(this) 444 this.registrations = new RegistrationsCommand(this)
443 445
444 this.storyboard = new StoryboardCommand(this) 446 this.storyboard = new StoryboardCommand(this)
447 this.chapters = new ChaptersCommand(this)
445 448
446 this.runners = new RunnersCommand(this) 449 this.runners = new RunnersCommand(this)
447 this.runnerRegistrationTokens = new RunnerRegistrationTokensCommand(this) 450 this.runnerRegistrationTokens = new RunnerRegistrationTokensCommand(this)