Create management portal in Flutter #39

This commit is contained in:
Scott E. Graves 2025-03-14 15:52:09 -05:00
parent 4326169186
commit e45119bbbf

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':