Add support for custom api_url and implement configuration migration
This commit is contained in:
parent
ab006d8c2e
commit
b0358dea18
2 changed files with 6 additions and 0 deletions
|
@ -1,2 +1,3 @@
|
|||
api_url: https://api.opensuse.org
|
||||
username: changeme
|
||||
password: changeme
|
||||
|
|
|
@ -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")
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue