gcs backup site needs a default credentials object

This commit is contained in:
Johannes Zellner
2025-09-29 11:07:57 +02:00
parent 703b47d916
commit ae55912176
@@ -92,6 +92,11 @@ watch(provider, (newProvider) => {
if (parseInt(providerConfig.value.downloadConcurrency) < 30) providerConfig.value.downloadConcurrency = 30;
if (parseInt(providerConfig.value.syncConcurrency) < 20) providerConfig.value.syncConcurrency = 20;
if (parseInt(providerConfig.value.copyConcurrency) < 500) providerConfig.value.downloadConcurrency = 500;
} else if (newProvider === 'gcs') {
providerConfig.value.credentials = {
client_email: '',
private_key: '',
};
}
});