mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 12:58:28 +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
@@ -310,5 +310,23 @@ namespace MediaBrowser.Controller.Library
|
||||
|
||||
return returnFiles;
|
||||
}
|
||||
|
||||
public Person GetPerson(string name)
|
||||
{
|
||||
// not yet implemented
|
||||
return null;
|
||||
}
|
||||
|
||||
public Studio GetStudio(string name)
|
||||
{
|
||||
// not yet implemented
|
||||
return null;
|
||||
}
|
||||
|
||||
public Year GetYear(int value)
|
||||
{
|
||||
// not yet implemented
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user