mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update startup wizard
This commit is contained in:
parent
9074b4bea3
commit
20b01a80b3
28 changed files with 447 additions and 121 deletions
|
@ -2995,15 +2995,11 @@
|
|||
});
|
||||
};
|
||||
|
||||
self.getUserViews = function (userId, options) {
|
||||
|
||||
if (!userId) {
|
||||
throw new Error("null userId");
|
||||
}
|
||||
self.getUserViews = function (options, userId) {
|
||||
|
||||
options = options || {};
|
||||
|
||||
var url = self.getUrl("Users/" + userId + "/Views", options);
|
||||
var url = self.getUrl("Users/" + (userId || self.getCurrentUserId()) + "/Views", options);
|
||||
|
||||
return self.ajax({
|
||||
type: "GET",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue