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

added auto-organize setting

This commit is contained in:
Luke Pulverenti 2015-08-22 15:46:55 -04:00
parent 31454fbeb1
commit e2c3d8d175
41 changed files with 151 additions and 66 deletions

View file

@ -8,6 +8,7 @@
$('#selectGuideDays', page).val(config.GuideDays || '').selectmenu('refresh');
$('#chkMovies', page).checked(config.EnableMovieProviders);
$('#chkOrganize', page).checked(config.EnableAutoOrganize);
$('#txtRecordingPath', page).val(config.RecordingPath || '');
@ -24,6 +25,7 @@
config.GuideDays = $('#selectGuideDays', form).val() || null;
config.EnableMovieProviders = $('#chkMovies', form).checked();
config.EnableAutoOrganize = $('#chkOrganize', form).checked();
config.RecordingPath = $('#txtRecordingPath', form).val() || null;
ApiClient.updateNamedConfiguration("livetv", config).done(Dashboard.processServerConfigurationUpdateResult);