1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Added a config setting to denote completion of the startup wizard

This commit is contained in:
LukePulverenti 2013-03-04 11:56:29 -05:00
parent 81911cd20b
commit f0133d6189
2 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,16 @@
var WizardFinishPage = {
onFinish: function() {
ApiClient.getServerConfiguration().done(function (config) {
config.IsStartupWizardCompleted = true;
ApiClient.updateServerConfiguration(config).done(function() {
Dashboard.navigate('dashboard.html');
});
});
}
};