aboutsummaryrefslogtreecommitdiffhomepage
path: root/support
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-04-22 12:00:23 +0200
committerChocobozzz <me@florianbigard.com>2021-04-22 12:00:23 +0200
commit87e0b71d36ae3d8f098c2be0ab45a29c9f2854b4 (patch)
tree27a776ff5a1cab4bf976e377a734e3be5c374f25 /support
parent096231d00e766c5d45e8975f4cec21c41a50ec2e (diff)
downloadPeerTube-87e0b71d36ae3d8f098c2be0ab45a29c9f2854b4.tar.gz
PeerTube-87e0b71d36ae3d8f098c2be0ab45a29c9f2854b4.tar.zst
PeerTube-87e0b71d36ae3d8f098c2be0ab45a29c9f2854b4.zip
Add go-live example for plugin form fields
Diffstat (limited to 'support')
-rw-r--r--support/doc/plugins/guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/doc/plugins/guide.md b/support/doc/plugins/guide.md
index a90f8e72b..ca951c781 100644
--- a/support/doc/plugins/guide.md
+++ b/support/doc/plugins/guide.md
@@ -626,7 +626,7 @@ async function register ({ registerVideoField, peertubeHelpers }) {
626 default: '' 626 default: ''
627 } 627 }
628 628
629 for (const type of [ 'upload', 'import-url', 'import-torrent', 'update' ]) { 629 for (const type of [ 'upload', 'import-url', 'import-torrent', 'update', 'go-live' ]) {
630 registerVideoField(commonOptions, { type }) 630 registerVideoField(commonOptions, { type })
631 } 631 }
632} 632}