mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			859 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			859 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Common.Json;
 | 
						|
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>
 | 
						|
        public PascalCaseJsonProfileFormatter() : base(JsonDefaults.PascalCase)
 | 
						|
        {
 | 
						|
            SupportedMediaTypes.Clear();
 | 
						|
            // Add application/json for default formatter
 | 
						|
            SupportedMediaTypes.Add(MediaTypeHeaderValue.Parse("application/json"));
 | 
						|
            SupportedMediaTypes.Add(MediaTypeHeaderValue.Parse("application/json;profile=\"PascalCase\""));
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |