Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 7961 | Rev 7967 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 7961 Rev 7962
Línea 296... Línea 296...
296
        submitHandler: function(form) {
296
        submitHandler: function(form) {
297
            $.ajax({
297
            $.ajax({
298
                'dataType': 'json',
298
                'dataType': 'json',
299
                'accept': 'application/json',
299
                'accept': 'application/json',
300
                'method': 'post',
300
                'method': 'post',
301
                'url': $('#form-interview').attr('action'),
301
                'url': $('#form-interview').attr('action').replaceAll('UUID_PLACEHOLDER', $('#vacancy_uuid').val()),
302
                'data': {
302
                'data': {
303
                    content: JSON.stringify(getContent()),
303
                    content: JSON.stringify(getContent()),
304
                    vacancy_uuid: $('#vacancy_uuid').val(),
-
 
305
                    candidate_uuid: $('#candidate_uuid').val(),
304
                    candidate_uuid: $('#candidate_uuid').val(),
306
                    points: $('#points').val(),
305
                    points: $('#points').val(),
307
                    comment: $('#comment').val(),
306
                    comment: $('#comment').val(),
308
                    status: $('#status').val(),
307
                    status: $('#status').val(),
309
                }
308
                }