diff options
author | Chocobozzz <me@florianbigard.com> | 2022-03-22 16:58:49 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-03-22 17:24:32 +0100 |
commit | 92e66e04f7f51d37b465cff442ce47f6d6d7cadd (patch) | |
tree | 4475c5c601c0f6673ca56afba5b7f70a4fae4ec3 /shared/server-commands/server/server.ts | |
parent | 1808a1f8e4b7b102823492a2007a46929aebf189 (diff) | |
download | PeerTube-92e66e04f7f51d37b465cff442ce47f6d6d7cadd.tar.gz PeerTube-92e66e04f7f51d37b465cff442ce47f6d6d7cadd.tar.zst PeerTube-92e66e04f7f51d37b465cff442ce47f6d6d7cadd.zip |
Rename studio to editor
Diffstat (limited to 'shared/server-commands/server/server.ts')
-rw-r--r-- | shared/server-commands/server/server.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/server-commands/server/server.ts b/shared/server-commands/server/server.ts index af4423e8d..2bf31b5a4 100644 --- a/shared/server-commands/server/server.ts +++ b/shared/server-commands/server/server.ts | |||
@@ -25,7 +25,7 @@ import { | |||
25 | PlaylistsCommand, | 25 | PlaylistsCommand, |
26 | ServicesCommand, | 26 | ServicesCommand, |
27 | StreamingPlaylistsCommand, | 27 | StreamingPlaylistsCommand, |
28 | VideoEditorCommand, | 28 | VideoStudioCommand, |
29 | VideosCommand | 29 | VideosCommand |
30 | } from '../videos' | 30 | } from '../videos' |
31 | import { CommentsCommand } from '../videos/comments-command' | 31 | import { CommentsCommand } from '../videos/comments-command' |
@@ -125,7 +125,7 @@ export class PeerTubeServer { | |||
125 | login?: LoginCommand | 125 | login?: LoginCommand |
126 | users?: UsersCommand | 126 | users?: UsersCommand |
127 | objectStorage?: ObjectStorageCommand | 127 | objectStorage?: ObjectStorageCommand |
128 | videoEditor?: VideoEditorCommand | 128 | videoStudio?: VideoStudioCommand |
129 | videos?: VideosCommand | 129 | videos?: VideosCommand |
130 | 130 | ||
131 | constructor (options: { serverNumber: number } | { url: string }) { | 131 | constructor (options: { serverNumber: number } | { url: string }) { |
@@ -396,6 +396,6 @@ export class PeerTubeServer { | |||
396 | this.users = new UsersCommand(this) | 396 | this.users = new UsersCommand(this) |
397 | this.videos = new VideosCommand(this) | 397 | this.videos = new VideosCommand(this) |
398 | this.objectStorage = new ObjectStorageCommand(this) | 398 | this.objectStorage = new ObjectStorageCommand(this) |
399 | this.videoEditor = new VideoEditorCommand(this) | 399 | this.videoStudio = new VideoStudioCommand(this) |
400 | } | 400 | } |
401 | } | 401 | } |