mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 02:39:33 +02:00
Rename studio to editor
This commit is contained in:
parent
1808a1f8e4
commit
92e66e04f7
81 changed files with 368 additions and 370 deletions
|
@ -60,7 +60,7 @@ export class ConfigCommand extends AbstractCommand {
|
|||
transcoding: {
|
||||
enabled: false
|
||||
},
|
||||
videoEditor: {
|
||||
videoStudio: {
|
||||
enabled: false
|
||||
}
|
||||
}
|
||||
|
@ -111,10 +111,10 @@ export class ConfigCommand extends AbstractCommand {
|
|||
})
|
||||
}
|
||||
|
||||
enableEditor () {
|
||||
enableStudio () {
|
||||
return this.updateExistingSubConfig({
|
||||
newConfig: {
|
||||
videoEditor: {
|
||||
videoStudio: {
|
||||
enabled: true
|
||||
}
|
||||
}
|
||||
|
@ -339,7 +339,7 @@ export class ConfigCommand extends AbstractCommand {
|
|||
}
|
||||
}
|
||||
},
|
||||
videoEditor: {
|
||||
videoStudio: {
|
||||
enabled: false
|
||||
},
|
||||
import: {
|
||||
|
|
|
@ -25,7 +25,7 @@ import {
|
|||
PlaylistsCommand,
|
||||
ServicesCommand,
|
||||
StreamingPlaylistsCommand,
|
||||
VideoEditorCommand,
|
||||
VideoStudioCommand,
|
||||
VideosCommand
|
||||
} from '../videos'
|
||||
import { CommentsCommand } from '../videos/comments-command'
|
||||
|
@ -125,7 +125,7 @@ export class PeerTubeServer {
|
|||
login?: LoginCommand
|
||||
users?: UsersCommand
|
||||
objectStorage?: ObjectStorageCommand
|
||||
videoEditor?: VideoEditorCommand
|
||||
videoStudio?: VideoStudioCommand
|
||||
videos?: VideosCommand
|
||||
|
||||
constructor (options: { serverNumber: number } | { url: string }) {
|
||||
|
@ -396,6 +396,6 @@ export class PeerTubeServer {
|
|||
this.users = new UsersCommand(this)
|
||||
this.videos = new VideosCommand(this)
|
||||
this.objectStorage = new ObjectStorageCommand(this)
|
||||
this.videoEditor = new VideoEditorCommand(this)
|
||||
this.videoStudio = new VideoStudioCommand(this)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue