aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/server-commands/server/server.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-06-01 14:51:16 +0200
committerChocobozzz <me@florianbigard.com>2023-06-29 10:16:55 +0200
commitd8f39b126d9fe4bec1c12fb213548cc6edc87867 (patch)
tree7f0f1cb23165cf4dd789b2d78b1fef7ee116f647 /shared/server-commands/server/server.ts
parent1fb7d094229acdc190c3f7551b43ac5445814dee (diff)
downloadPeerTube-d8f39b126d9fe4bec1c12fb213548cc6edc87867.tar.gz
PeerTube-d8f39b126d9fe4bec1c12fb213548cc6edc87867.tar.zst
PeerTube-d8f39b126d9fe4bec1c12fb213548cc6edc87867.zip
Add storyboard support
Diffstat (limited to 'shared/server-commands/server/server.ts')
-rw-r--r--shared/server-commands/server/server.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/shared/server-commands/server/server.ts b/shared/server-commands/server/server.ts
index 0911e22b0..6aa4296b0 100644
--- a/shared/server-commands/server/server.ts
+++ b/shared/server-commands/server/server.ts
@@ -35,6 +35,7 @@ import {
35 VideoPasswordsCommand, 35 VideoPasswordsCommand,
36 PlaylistsCommand, 36 PlaylistsCommand,
37 ServicesCommand, 37 ServicesCommand,
38 StoryboardCommand,
38 StreamingPlaylistsCommand, 39 StreamingPlaylistsCommand,
39 VideosCommand, 40 VideosCommand,
40 VideoStudioCommand, 41 VideoStudioCommand,
@@ -149,6 +150,8 @@ export class PeerTubeServer {
149 registrations?: RegistrationsCommand 150 registrations?: RegistrationsCommand
150 videoPasswords?: VideoPasswordsCommand 151 videoPasswords?: VideoPasswordsCommand
151 152
153 storyboard?: StoryboardCommand
154
152 runners?: RunnersCommand 155 runners?: RunnersCommand
153 runnerRegistrationTokens?: RunnerRegistrationTokensCommand 156 runnerRegistrationTokens?: RunnerRegistrationTokensCommand
154 runnerJobs?: RunnerJobsCommand 157 runnerJobs?: RunnerJobsCommand
@@ -436,6 +439,8 @@ export class PeerTubeServer {
436 this.videoToken = new VideoTokenCommand(this) 439 this.videoToken = new VideoTokenCommand(this)
437 this.registrations = new RegistrationsCommand(this) 440 this.registrations = new RegistrationsCommand(this)
438 441
442 this.storyboard = new StoryboardCommand(this)
443
439 this.runners = new RunnersCommand(this) 444 this.runners = new RunnersCommand(this)
440 this.runnerRegistrationTokens = new RunnerRegistrationTokensCommand(this) 445 this.runnerRegistrationTokens = new RunnerRegistrationTokensCommand(this)
441 this.runnerJobs = new RunnerJobsCommand(this) 446 this.runnerJobs = new RunnerJobsCommand(this)