mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-03 17:02:07 +01:00
All calls to get items now require passing in a userId. Made the model project portable. Also filled in more api calls.
This commit is contained in:
parent
baedafbeb9
commit
6fbd5cf464
@@ -6,11 +6,13 @@ namespace MediaBrowser.Model.Configuration
|
||||
{
|
||||
public string ImagesByNamePath { get; set; }
|
||||
public int HttpServerPortNumber { get; set; }
|
||||
public int RecentItemDays { get; set; }
|
||||
public LogSeverity LogSeverity { get; set; }
|
||||
|
||||
public Configuration()
|
||||
{
|
||||
HttpServerPortNumber = 8096;
|
||||
RecentItemDays = 14;
|
||||
LogSeverity = LogSeverity.Info;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user