Add the session status to user logs

This commit is contained in:
FusionPBX
2024-09-02 23:42:52 -06:00
committed by GitHub
parent ffd0545a22
commit 452ddc9539
4 changed files with 37 additions and 5 deletions
+5 -1
View File
@@ -19,7 +19,6 @@
$apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
$y++;
$apps[$x]['permissions'][$y]['name'] = 'user_log_delete';
//$apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
$y++;
//User Logs
@@ -80,6 +79,11 @@
$apps[$x]['db'][$y]['fields'][$z]['search_by'] = 'true';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the user agent.';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'session_id';
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
$apps[$x]['db'][$y]['fields'][$z]['search_by'] = 'true';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = '';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "insert_date";
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz';
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date';