aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/server-commands/server/server.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/server-commands/server/server.ts')
-rw-r--r--shared/server-commands/server/server.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/shared/server-commands/server/server.ts b/shared/server-commands/server/server.ts
index 0ad818a11..7acbc978f 100644
--- a/shared/server-commands/server/server.ts
+++ b/shared/server-commands/server/server.ts
@@ -19,6 +19,7 @@ import {
19 CaptionsCommand, 19 CaptionsCommand,
20 ChangeOwnershipCommand, 20 ChangeOwnershipCommand,
21 ChannelsCommand, 21 ChannelsCommand,
22 ChannelSyncsCommand,
22 HistoryCommand, 23 HistoryCommand,
23 ImportsCommand, 24 ImportsCommand,
24 LiveCommand, 25 LiveCommand,
@@ -118,6 +119,7 @@ export class PeerTubeServer {
118 playlists?: PlaylistsCommand 119 playlists?: PlaylistsCommand
119 history?: HistoryCommand 120 history?: HistoryCommand
120 imports?: ImportsCommand 121 imports?: ImportsCommand
122 channelSyncs?: ChannelSyncsCommand
121 streamingPlaylists?: StreamingPlaylistsCommand 123 streamingPlaylists?: StreamingPlaylistsCommand
122 channels?: ChannelsCommand 124 channels?: ChannelsCommand
123 comments?: CommentsCommand 125 comments?: CommentsCommand
@@ -390,6 +392,7 @@ export class PeerTubeServer {
390 this.playlists = new PlaylistsCommand(this) 392 this.playlists = new PlaylistsCommand(this)
391 this.history = new HistoryCommand(this) 393 this.history = new HistoryCommand(this)
392 this.imports = new ImportsCommand(this) 394 this.imports = new ImportsCommand(this)
395 this.channelSyncs = new ChannelSyncsCommand(this)
393 this.streamingPlaylists = new StreamingPlaylistsCommand(this) 396 this.streamingPlaylists = new StreamingPlaylistsCommand(this)
394 this.channels = new ChannelsCommand(this) 397 this.channels = new ChannelsCommand(this)
395 this.comments = new CommentsCommand(this) 398 this.comments = new CommentsCommand(this)