diff --git a/base-config.yaml b/base-config.yaml index 1eb4044..351a0ef 100644 --- a/base-config.yaml +++ b/base-config.yaml @@ -1,2 +1,3 @@ +api_url: https://api.opensuse.org username: changeme password: changeme diff --git a/oscbot/__init__.py b/oscbot/__init__.py index 57f87b9..555bed7 100644 --- a/oscbot/__init__.py +++ b/oscbot/__init__.py @@ -45,6 +45,11 @@ class BuildRepository: class Config(BaseProxyConfig): def do_update(self, helper: ConfigUpdateHelper) -> None: + + if "api_url" not in self: + helper.base["api_url"] = "https://api.opensuse.org" + else: + helper.copy("api_url") helper.copy("username") helper.copy("password")