This commit is contained in:
Daniel Maya 2023-06-13 16:19:26 +02:00
parent 6a941f6cda
commit 6e56d680ba
1 changed files with 6 additions and 0 deletions

View File

@ -80,6 +80,12 @@ if ((bool) check_acl($config['id_user'], 0, 'AR') === true
if ((bool) check_acl($config['id_user'], 0, 'AW') === true) { if ((bool) check_acl($config['id_user'], 0, 'AW') === true) {
enterprise_hook('applications_menu'); enterprise_hook('applications_menu');
enterprise_hook('cloud_menu'); enterprise_hook('cloud_menu');
}
if ((bool) check_acl($config['id_user'], 0, 'RW') === true
|| (bool) check_acl($config['id_user'], 0, 'RM') === true
|| (bool) check_acl($config['id_user'], 0, 'PM') === true
) {
enterprise_hook('console_task_menu'); enterprise_hook('console_task_menu');
} }
} }