|
@@ -18,8 +18,8 @@ class Extension(ext.Extension):
|
|
|
|
|
|
def get_config_schema(self):
|
|
|
schema = super().get_config_schema()
|
|
|
- schema["url"] = config.String()
|
|
|
- schema["token"] = config.Secret()
|
|
|
+ schema["urls"] = config.String()
|
|
|
+ schema["tokens"] = config.Secret(optional=True)
|
|
|
return schema
|
|
|
|
|
|
def setup(self, registry):
|