Fix bad config names

This commit is contained in:
2023-01-08 01:44:16 -05:00
parent bbd1f5b5b7
commit 2320210b37

View File

@ -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):