mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-02 08:23:04 +00:00
17 lines
425 B
C#
17 lines
425 B
C#
using System;
|
|
using MediaBrowser.Common.Net.Handlers;
|
|
using MediaBrowser.Controller;
|
|
|
|
namespace MediaBrowser.Api.HttpHandlers
|
|
{
|
|
public class UserConfigurationHandler : BaseJsonHandler
|
|
{
|
|
protected override object GetObjectToSerialize()
|
|
{
|
|
Guid userId = Guid.Parse(QueryString["userid"]);
|
|
|
|
return Kernel.Instance.GetUserConfiguration(userId);
|
|
}
|
|
}
|
|
}
|