mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 09:49:20 +02:00
Add basic video editor support
This commit is contained in:
parent
a24bf4dc65
commit
c729caf6cc
130 changed files with 3969 additions and 1353 deletions
|
@ -25,6 +25,7 @@ import {
|
|||
PlaylistsCommand,
|
||||
ServicesCommand,
|
||||
StreamingPlaylistsCommand,
|
||||
VideoEditorCommand,
|
||||
VideosCommand
|
||||
} from '../videos'
|
||||
import { CommentsCommand } from '../videos/comments-command'
|
||||
|
@ -124,6 +125,7 @@ export class PeerTubeServer {
|
|||
login?: LoginCommand
|
||||
users?: UsersCommand
|
||||
objectStorage?: ObjectStorageCommand
|
||||
videoEditor?: VideoEditorCommand
|
||||
videos?: VideosCommand
|
||||
|
||||
constructor (options: { serverNumber: number } | { url: string }) {
|
||||
|
@ -394,5 +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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue