mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			430 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			430 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using MediaBrowser.Controller;
 | 
						|
 | 
						|
namespace MediaBrowser.Api.HttpHandlers
 | 
						|
{
 | 
						|
    public class UserConfigurationHandler : JsonHandler
 | 
						|
    {
 | 
						|
        protected override object ObjectToSerialize
 | 
						|
        {
 | 
						|
            get
 | 
						|
            {
 | 
						|
                Guid userId = Guid.Parse(QueryString["userid"]);
 | 
						|
 | 
						|
                return Kernel.Instance.GetUserConfiguration(userId);
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |