Create management portal in Flutter #39
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
Scott E. Graves 2025-03-14 16:18:35 -05:00
parent 85beb3dfea
commit 9d083a1d93

View File

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