Update the event_guard constructor.

This commit is contained in:
FusionPBX 2022-08-17 17:27:47 -06:00 committed by GitHub
parent 7e34f1f8f4
commit 82bb973ea7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -50,12 +50,12 @@ if (!class_exists('event_guard')) {
*/
public function __construct() {
//assign the variables
$this->app_name = 'event_guard_logs';
$this->app_name = 'event_guard';
$this->app_uuid = 'c5b86612-1514-40cb-8e2c-3f01a8f6f637';
$this->name = 'event_guard_log';
$this->table = 'event_guard_logs';
$this->toggle_field = '';
$this->toggle_values = ['true','false'];
$this->toggle_values = ['block','pending'];
$this->location = 'event_guard_logs.php';
}