aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/server-commands/src/server
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-08-28 10:55:04 +0200
committerChocobozzz <me@florianbigard.com>2023-08-28 16:17:31 +0200
commit77b70702d2193d78bf6fbd07f0fc7335e34957f8 (patch)
tree1a0aed540054286c9a8b10c4890cc0f718e00458 /packages/server-commands/src/server
parent7113f32a87bd6b2868154fed20bde1a1633c190e (diff)
downloadPeerTube-77b70702d2193d78bf6fbd07f0fc7335e34957f8.tar.gz
PeerTube-77b70702d2193d78bf6fbd07f0fc7335e34957f8.tar.zst
PeerTube-77b70702d2193d78bf6fbd07f0fc7335e34957f8.zip
Add video chapters support
Diffstat (limited to 'packages/server-commands/src/server')
-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)