Added hide_inactive_lists system settings option
git-svn-id: svn://192.168.202.10@2779 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
@@ -1714,7 +1714,8 @@ enable_drop_lists ENUM('0','1','2') default '0',
|
||||
allow_ip_lists ENUM('0','1','2') default '0',
|
||||
system_ip_blacklist VARCHAR(30) default '',
|
||||
agent_push_events ENUM('0','1') default '0',
|
||||
agent_push_url TEXT
|
||||
agent_push_url TEXT,
|
||||
hide_inactive_lists ENUM('0','1') default '0'
|
||||
) ENGINE=MyISAM;
|
||||
|
||||
CREATE TABLE vicidial_campaigns_list_mix (
|
||||
@@ -4007,4 +4008,4 @@ UPDATE vicidial_configuration set value='1766' where name='qc_database_version';
|
||||
|
||||
UPDATE system_settings set vdc_agent_api_active='1';
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1506',db_schema_update_date=NOW(),reload_timestamp=NOW();
|
||||
UPDATE system_settings SET db_schema_version='1507',db_schema_update_date=NOW(),reload_timestamp=NOW();
|
||||
|
||||
@@ -267,3 +267,7 @@ ALTER TABLE system_settings ADD agent_push_events ENUM('0','1') default '0';
|
||||
ALTER TABLE system_settings ADD agent_push_url TEXT;
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1506',db_schema_update_date=NOW() where db_schema_version < 1506;
|
||||
|
||||
ALTER TABLE system_settings ADD hide_inactive_lists ENUM('0','1') default '0';
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1507',db_schema_update_date=NOW() where db_schema_version < 1507;
|
||||
|
||||
+35
-10
File diff suppressed because one or more lines are too long
@@ -128,6 +128,7 @@
|
||||
# 170430-0957 - Added three_way_record_stop and hangup_xfer_record_start entries
|
||||
# 170516-0628 - Added rt_monitor_log_report entry
|
||||
# 170529-2337 - Added agent push events entries
|
||||
# 170613-0855 - Added hide_inactive_lists
|
||||
#
|
||||
|
||||
|
||||
@@ -5329,6 +5330,11 @@ FR_SPAC 00 00 00 00 00 - <?php echo _QXZ("France space separated phone number");
|
||||
<BR>
|
||||
<B><?php echo _QXZ("Enable Expanded List Stats"); ?> -</B><?php echo _QXZ("This setting enables two additional columns to be displayed on most of the List status breakdown tables on the list modification and campaign modification pages. Penetration is defined as the percent of leads that are at or above the campaign Call Count Limit and-or the status is marked as Completed. Default is 1 for enabled."); ?>
|
||||
|
||||
<BR>
|
||||
<A NAME="settings-hide_inactive_lists">
|
||||
<BR>
|
||||
<B><?php echo _QXZ("Hide Inactive Lists"); ?> -</B><?php echo _QXZ("This setting allows you to hide inactive lists from the Lists Listing page. Similar to the default Users feature, a link to display all lists will be available at the top of the listings section. Default is 0 for disabled."); ?>
|
||||
|
||||
<BR>
|
||||
<A NAME="settings-country_code_list_stats">
|
||||
<BR>
|
||||
|
||||
Reference in New Issue
Block a user