| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/projects/nextcloud/apps/activity/js/ |
Upload File : |
$(document).ready(function() {
function saveSettings() {
OC.msg.startSaving('#activity_notifications_msg');
var post = $('#activity_notifications').serialize();
$.post(OC.generateUrl('/apps/activity/settings/admin'), post, function(response) {
OC.msg.finishedSuccess('#activity_notifications_msg', response.data.message);
});
}
var $activityNotifications = $('#activity_notifications');
$activityNotifications.find('input[type=checkbox]').change(saveSettings);
$activityNotifications.find('select').change(saveSettings);
$activityNotifications.find('.activity_select_group').click(function() {
var $selectGroup = '#activity_notifications .' + $(this).attr('data-select-group');
var $filteredBoxes = $($selectGroup).not(':disabled');
var $checkedBoxes = $filteredBoxes.filter(':checked').length;
$filteredBoxes.prop('checked', true);
if ($checkedBoxes === $filteredBoxes.filter(':checked').length) {
// All values were already selected, so invert it
$filteredBoxes.prop('checked', false);
}
saveSettings();
});
$('#activity_email_enabled').on('change', function() {
OCP.AppConfig.setValue(
'activity', 'enable_email',
$(this).attr('checked') === 'checked' ? 'yes' : 'no'
);
})
});