Details
-
Type: Improvement
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 4.12.0-b1
-
Component/s: None
-
Labels:None
-
Epic Link:
Description
And a new tab under Tools > Logs > Messenger. This will function similarly to the module log page. Except that it should display a "Recipient" column rather than "Staff"
The log_messages table will need to be updated as well:
- id int(10) unsigned NOT NULL AUTO_INCREMENT,
- messenger_id int(10) unsigned NOT NULL,
- to_user_id int(10) unsigned DEFAULT NULL,
- direction ENUM ('input', 'output') NOT NULL
- data mediumtext COLLATE utf8_unicode_ci,
- success tinyint(1) unsigned NOT NULL DEFAULT '0',
- date_added datetime NOT NULL,
- group CHAR(8) NOT NULL,
- PRIMARY KEY (`id`),
- INDEX `messenger_id ` (`company_id`),
- INDEX `to_user_id` (`to_user_id`)
- INDEX `group` (`group`)