mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Common.Plugins;
 | 
						|
using MediaBrowser.Controller.LiveTv;
 | 
						|
using MediaBrowser.Model.Entities;
 | 
						|
using MediaBrowser.Model.Session;
 | 
						|
using MediaBrowser.Model.SyncPlay;
 | 
						|
using Microsoft.OpenApi.Models;
 | 
						|
using Swashbuckle.AspNetCore.SwaggerGen;
 | 
						|
 | 
						|
namespace Jellyfin.Server.Filters
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Add models used in websocket messaging.
 | 
						|
    /// </summary>
 | 
						|
    public class WebsocketModelFilter : IDocumentFilter
 | 
						|
    {
 | 
						|
        /// <inheritdoc />
 | 
						|
        public void Apply(OpenApiDocument swaggerDoc, DocumentFilterContext context)
 | 
						|
        {
 | 
						|
            context.SchemaGenerator.GenerateSchema(typeof(LibraryUpdateInfo), context.SchemaRepository);
 | 
						|
            context.SchemaGenerator.GenerateSchema(typeof(IPlugin), context.SchemaRepository);
 | 
						|
            context.SchemaGenerator.GenerateSchema(typeof(PlayRequest), context.SchemaRepository);
 | 
						|
            context.SchemaGenerator.GenerateSchema(typeof(PlaystateRequest), context.SchemaRepository);
 | 
						|
            context.SchemaGenerator.GenerateSchema(typeof(TimerEventInfo), context.SchemaRepository);
 | 
						|
            context.SchemaGenerator.GenerateSchema(typeof(SendCommand), context.SchemaRepository);
 | 
						|
            context.SchemaGenerator.GenerateSchema(typeof(GeneralCommandType), context.SchemaRepository);
 | 
						|
 | 
						|
            context.SchemaGenerator.GenerateSchema(typeof(GroupUpdate<object>), context.SchemaRepository);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |