Mods-for-HESK-Netsyms/install/js/migration-handler.js

14 lines
405 B
JavaScript
Raw Normal View History

2017-10-16 13:08:53 -04:00
function executeMigration(migrationNumber, direction, success, error) {
var heskPath = $('p#hesk-path').text();
$.ajax({
url: heskPath + 'install/ajax/process-migration.php',
method: 'POST',
data: JSON.stringify({
migrationNumber: migrationNumber,
direction: direction
}),
success: success(data),
error: error(data)
})
}