mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update to latest js api client
This commit is contained in:
parent
1774c39a74
commit
d4ba550d57
3 changed files with 13 additions and 2 deletions
11
ApiClient.js
11
ApiClient.js
|
@ -537,6 +537,17 @@ MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout) {
|
|||
});
|
||||
};
|
||||
|
||||
self.getNextUpEpisodes = function (options) {
|
||||
|
||||
var url = self.getUrl("Shows/NextUp", options);
|
||||
|
||||
return self.ajax({
|
||||
type: "GET",
|
||||
url: url,
|
||||
dataType: "json"
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Stops a scheduled task
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue