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

15 lines
346 B
JavaScript
Raw Normal View History

var WizardFinishPage = {
2013-04-23 15:17:21 -04:00
onFinish: function () {
ApiClient.getServerConfiguration().done(function (config) {
config.IsStartupWizardCompleted = true;
2013-04-23 15:17:21 -04:00
2014-07-07 21:41:03 -04:00
ApiClient.updateServerConfiguration(config).done(function () {
2013-04-23 15:17:21 -04:00
2014-07-07 21:41:03 -04:00
Dashboard.navigate('dashboard.html');
});
});
}
};