This commit is contained in:
Scott E. Graves 2025-03-14 15:53:45 -05:00
parent e45119bbbf
commit 3eb4ad85d3

View File

@ -109,10 +109,6 @@ List<Validator> getSettingValidators(String settingPath) {
]; ];
case 'HostConfig.Protocol': case 'HostConfig.Protocol':
return [(value) => value == "http" || value == "https"]; return [(value) => value == "http" || value == "https"];
case 'RemoteConfig.EncryptionToken':
return [(value) => value.isNotEmpty];
case 'RemoteMount.EncryptionToken':
return [(value) => value.isNotEmpty];
case 'S3Config.AccessKey': case 'S3Config.AccessKey':
return [(value) => value.trim().isNotEmpty]; return [(value) => value.trim().isNotEmpty];
case 'S3Config.Bucket': case 'S3Config.Bucket':