feat: Added support for auto-filling remote MySQL root password in App Store

This commit is contained in:
zhengkunwang223 2025-12-08 11:37:12 +08:00
parent f9a20ec443
commit c4b5df83e1

View file

@ -515,6 +515,7 @@ func (a *AppInstallService) GetServices(key string) ([]response.AppService, erro
} else {
service.From = constant.AppResourceRemote
service.Status = constant.StatusRunning
service.Config = map[string]string{"PANEL_DB_ROOT_PASSWORD": db.Password, "PANEL_DB_ROOT_USER": db.Username}
}
res = append(res, service)
}