22 lines
708 B
C#
22 lines
708 B
C#
using Jellyfin.Extensions.Json;
|
|
using Microsoft.AspNetCore.Mvc.Formatters;
|
|
using Microsoft.Net.Http.Headers;
|
|
|
|
namespace Jellyfin.Server.Formatters
|
|
{
|
|
/// <summary>
|
|
/// Camel Case Json Profile Formatter.
|
|
/// </summary>
|
|
public class CamelCaseJsonProfileFormatter : SystemTextJsonOutputFormatter
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CamelCaseJsonProfileFormatter"/> class.
|
|
/// </summary>
|
|
public CamelCaseJsonProfileFormatter() : base(JsonDefaults.CamelCaseOptions)
|
|
{
|
|
SupportedMediaTypes.Clear();
|
|
SupportedMediaTypes.Add(MediaTypeHeaderValue.Parse(JsonDefaults.CamelCaseMediaType));
|
|
}
|
|
}
|
|
}
|