jellyfin/Jellyfin.Server/Formatters/CamelCaseJsonProfileFormatter.cs

22 lines
722 B
C#
Raw Normal View History

using MediaBrowser.Common.Json;
2020-04-20 02:04:36 +02:00
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>
2020-06-13 21:11:41 +02:00
public CamelCaseJsonProfileFormatter() : base(JsonDefaults.GetCamelCaseOptions())
2020-04-20 02:04:36 +02:00
{
SupportedMediaTypes.Clear();
SupportedMediaTypes.Add(MediaTypeHeaderValue.Parse("application/json;profile=\"CamelCase\""));
}
}
}