runtime/WampClient.py
changeset 3881 0b3ac94f494c
parent 3752 9f6f46dbe3ae
parent 3856 054c4f1b2ea7
child 3883 a6e7dd8bac36
--- a/runtime/WampClient.py	Sat Nov 25 00:18:05 2023 +0100
+++ b/runtime/WampClient.py	Thu Dec 07 22:41:32 2023 +0100
@@ -490,11 +490,13 @@
 
 def RegisterWebSettings(NS):
 
-    NS.ConfigurableSettings.addSettings(
+    WebSettings = NS.newExtensionSetting("Wamp Extension Settings", "wamp_settings")
+    WebSettings.addSettings(
         "wamp",
         _("Wamp Settings"),
         webFormInterface,
         _("Set"),
         wampConfig)
 
-    NS.customSettingsURLs[WAMP_SECRET_URL] = deliverWampSecret
+    WebSettings.addCustomURL(WAMP_SECRET_URL, deliverWampSecret)
+