Add support for custom api_url and implement configuration migration

This commit is contained in:
Luca Beltrame 2022-01-23 17:08:28 +01:00
parent ab006d8c2e
commit b0358dea18
Signed by: einar
GPG key ID: 4707F46E9EC72DEC
2 changed files with 6 additions and 0 deletions

View file

@ -1,2 +1,3 @@
api_url: https://api.opensuse.org
username: changeme
password: changeme

View file

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