Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 1612 Rev 1613
Línea 6... Línea 6...
6
$routeDatatable = $this->url('recruitment-and-selection/candidates');
6
$routeDatatable = $this->url('recruitment-and-selection/candidates');
7
$routeAdd = $this->url('recruitment-and-selection/candidates/add', ['vacancy_uuid' => 'UUID_PLACEHOLDER']);
7
$routeAdd = $this->url('recruitment-and-selection/candidates/add', ['vacancy_uuid' => 'UUID_PLACEHOLDER']);
Línea 8... Línea 8...
8
 
8
 
9
$allowAdd = $acl->isAllowed($roleName, 'recruitment-and-selection/candidates/add') ? 1 : 0;
9
$allowAdd = $acl->isAllowed($roleName, 'recruitment-and-selection/candidates/add') ? 1 : 0;
-
 
10
$allowDelete = $acl->isAllowed($roleName, 'recruitment-and-selection/candidates/delete') ? 1 : 0;
Línea 10... Línea 11...
10
$allowDelete = $acl->isAllowed($roleName, 'recruitment-and-selection/candidates/delete') ? 1 : 0;
11
$allowEdit = $acl->isAllowed($roleName, 'recruitment-and-selection/candidates/edit') ? 1 : 0;
11
 
12
 
Línea 57... Línea 58...
57
 
58
 
Línea 58... Línea 59...
58
 
59
 
59
jQuery( document ).ready(function( $ ) {
60
jQuery( document ).ready(function( $ ) {
-
 
61
 
Línea 60... Línea 62...
60
 
62
    var allowAdd = $allowAdd;
61
    var allowAdd = $allowAdd;
63
    var allowDelete = $allowDelete;
62
    var allowDelete = $allowDelete
64
    var allowEdit = $allowEdit;
63
 
65