From e50cfa6a8b2162b52df6f46fee0b71cf07fefb73 Mon Sep 17 00:00:00 2001 From: John Livingston Date: Wed, 14 Jul 2021 19:22:25 +0200 Subject: [PATCH] Moving setting prosody-peertube-uri in advanced settings. --- server/lib/settings.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/server/lib/settings.ts b/server/lib/settings.ts index 23e29ac0..f9c486d3 100644 --- a/server/lib/settings.ts +++ b/server/lib/settings.ts @@ -110,18 +110,6 @@ Change it if this port is already in use on your server.
You can close this port on your firewall, it will not be accessed from the outer world.` }) - registerSetting({ - name: 'prosody-peertube-uri', - label: 'Peertube url for API calls', - type: 'input', - default: '', - private: true, - descriptionHTML: -`Please let this settings empty if you don't know what you are doing.
-In some rare case, Prosody can't call Peertube's API from its public URI. -You can use this field to customise Peertube's URI for Prosody modules (for example with «http://localhost:9000»).` - }) - registerSetting({ name: 'chat-server', label: 'XMPP service server', @@ -284,6 +272,18 @@ Example: height:400px;`, descriptionHTML: '

Prosody advanced settings

' }) + registerSetting({ + name: 'prosody-peertube-uri', + label: 'Peertube url for API calls', + type: 'input', + default: '', + private: true, + descriptionHTML: +`Please let this settings empty if you don't know what you are doing.
+In some rare case, Prosody can't call Peertube's API from its public URI. +You can use this field to customise Peertube's URI for Prosody modules (for example with «http://localhost:9000»).` + }) + registerSetting({ name: 'prosody-c2s', label: 'Enable client to server connections',