Files
mixtape/zero.Api/ApiParameterTransformer.cs
T

11 lines
247 B
C#
Raw Normal View History

2021-11-30 14:32:10 +01:00
using Microsoft.AspNetCore.Routing;
namespace zero.Api;
public class ApiParameterTransformer : IOutboundParameterTransformer
{
public string TransformOutbound(object value)
{
return value == null ? null : Safenames.Alias(value);
}
}