V13-FE-011: finalize search list layout slice

This commit is contained in:
2026-08-09 02:57:26 +09:00
parent 9efd202e76
commit 6422cb2b13
984 changed files with 120811 additions and 1498 deletions
@@ -0,0 +1,23 @@
using FastEndpoints;
namespace Shared.Problems;
public static class KbxFastEndpoints
{
public static void ConfigureErrors(Config config)
{
config.Errors.ProducesMetadataType = typeof(KbxValidationProblem);
config.Errors.ResponseBuilder = (failures, _, _) =>
KbxValidationProblem.Create(failures.Select(f => new KbxValidationError(
Field: ToCamelCase(f.PropertyName),
RowKey: null,
Code: string.IsNullOrWhiteSpace(f.ErrorCode) ? "VALIDATION_ERROR" : f.ErrorCode,
Message: f.ErrorMessage)).ToArray());
}
private static string? ToCamelCase(string? value)
{
if (string.IsNullOrWhiteSpace(value)) return value;
return char.ToLowerInvariant(value[0]) + value[1..];
}
}