From 941469df291123ed037c5fae96c8997f647d50b3 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 12 Sep 2025 08:53:38 +0200 Subject: [PATCH] Add externalRedirectUri doc --- support/doc/plugins/guide.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/support/doc/plugins/guide.md b/support/doc/plugins/guide.md index 8f516e04c..05cdb6edf 100644 --- a/support/doc/plugins/guide.md +++ b/support/doc/plugins/guide.md @@ -418,7 +418,12 @@ function register (...) { if (fieldName === 'videoQuotaDaily') return currentValue return newValue - } + }, + + // Ask PeerTube to redirect on this URL instead of classic `/login` page + // The URL will contain an `externalAuthToken` param that can be reused to authenticate to the PeerTube REST API + // Introduced in PeerTube >= 7.3 + externalRedirectUri: 'https://mywebsite.example.com/peertube-login-cb' }) })