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.
27 lines
638 B
27 lines
638 B
using System;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.Api.HttpHandlers
|
|
{
|
|
public class ItemHandler : JsonHandler
|
|
{
|
|
protected sealed override object ObjectToSerialize
|
|
{
|
|
get
|
|
{
|
|
Guid userId = Guid.Parse(QueryString["userid"]);
|
|
|
|
return ApiService.GetSerializationObject(ItemToSerialize, true, userId);
|
|
}
|
|
}
|
|
|
|
protected virtual BaseItem ItemToSerialize
|
|
{
|
|
get
|
|
{
|
|
return ApiService.GetItemById(QueryString["id"]);
|
|
}
|
|
}
|
|
}
|
|
}
|