You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
708 B
22 lines
708 B
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));
|
|
}
|
|
}
|
|
}
|