mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 09:14:45 +03:00
Pushing missing changes
This commit is contained in:
17
MediaBrowser.WebDashboard/Html/scripts/WizardStartPage.js
Normal file
17
MediaBrowser.WebDashboard/Html/scripts/WizardStartPage.js
Normal file
@@ -0,0 +1,17 @@
|
||||
var WizardStartPage = {
|
||||
|
||||
gotoNextPage: function () {
|
||||
|
||||
ApiClient.getAllUsers().done(function (users) {
|
||||
|
||||
if (users.length > 1) {
|
||||
|
||||
Dashboard.navigate('wizardLibrary.html');
|
||||
|
||||
} else {
|
||||
Dashboard.navigate('wizardUser.html');
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user