jellyfin/Jellyfin.Server/Formatters/PascalCaseJsonProfileFormat...

25 lines
893 B
C#
Raw Normal View History

2020-08-20 13:17:27 -04:00
using System.Net.Mime;
using Jellyfin.Extensions.Json;
2020-04-19 20:10:59 -04:00
using Microsoft.AspNetCore.Mvc.Formatters;
using Microsoft.Net.Http.Headers;
namespace Jellyfin.Server.Formatters
{
/// <summary>
/// Pascal Case Json Profile Formatter.
/// </summary>
public class PascalCaseJsonProfileFormatter : SystemTextJsonOutputFormatter
{
/// <summary>
/// Initializes a new instance of the <see cref="PascalCaseJsonProfileFormatter"/> class.
/// </summary>
2021-03-08 23:57:38 -05:00
public PascalCaseJsonProfileFormatter() : base(JsonDefaults.PascalCaseOptions)
2020-04-19 20:10:59 -04:00
{
SupportedMediaTypes.Clear();
// Add application/json for default formatter
2020-08-20 13:17:27 -04:00
SupportedMediaTypes.Add(MediaTypeHeaderValue.Parse(MediaTypeNames.Application.Json));
SupportedMediaTypes.Add(MediaTypeHeaderValue.Parse(JsonDefaults.PascalCaseMediaType));
2020-04-19 20:10:59 -04:00
}
}
}