]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Add go-live example for plugin form fields
authorChocobozzz <me@florianbigard.com>
Thu, 22 Apr 2021 10:00:23 +0000 (12:00 +0200)
committerChocobozzz <me@florianbigard.com>
Thu, 22 Apr 2021 10:00:23 +0000 (12:00 +0200)
shared/models/plugins/register-client-form-field.model.ts
support/doc/plugins/guide.md

index cdcdaa181d4abe3fa5b40b50efbbbab38914a1f4..db61dbc886966ae8f098307e43f6080a641ad382 100644 (file)
@@ -16,5 +16,5 @@ export type RegisterClientFormFieldOptions = {
 }
 
 export interface RegisterClientVideoFieldOptions {
-  type: 'import-url' | 'import-torrent' | 'update' | 'upload'
+  type: 'update' | 'upload' | 'import-url' | 'import-torrent' | 'go-live'
 }
index a90f8e72b2e35c96a1aae4fee4cc4e6b28be17d5..ca951c781d0ed0552a1fdf98cb535793f2284041 100644 (file)
@@ -626,7 +626,7 @@ async function register ({ registerVideoField, peertubeHelpers }) {
     default: ''
   }
 
-  for (const type of [ 'upload', 'import-url', 'import-torrent', 'update' ]) {
+  for (const type of [ 'upload', 'import-url', 'import-torrent', 'update', 'go-live' ]) {
     registerVideoField(commonOptions, { type })
   }
 }