jellyfin-server/Jellyfin.Server/Formatters/CamelCaseJsonProfileFormatter.cs

22 lines
723 B
C#
Raw Normal View History

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