Fix #2136 allow admin to add exception to cleanup list

This commit is contained in:
Kijin Sung 2023-07-04 22:37:17 +09:00
parent b01c36b792
commit e98ba87f8e
6 changed files with 60 additions and 1 deletions

View file

@ -0,0 +1,12 @@
'use strict';
(function() {
$(function() {
$('.add_cleanup_exception').on('click', function() {
const row = $(this).parents('tr');
exec_json('admin.procAdminAddCleanupException', { path: $(this).data('path') }, function() {
row.fadeOut();
});
});
});
})();