Added modify_dial_prefix user setting
git-svn-id: svn://192.168.202.10@3727 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
@@ -702,7 +702,8 @@ user_group_two VARCHAR(20) default '',
|
||||
failed_login_attempts_today MEDIUMINT(8) UNSIGNED default '0',
|
||||
failed_login_count_today SMALLINT(6) UNSIGNED default '0',
|
||||
failed_last_ip_today VARCHAR(50) default '',
|
||||
failed_last_type_today VARCHAR(20) default ''
|
||||
failed_last_type_today VARCHAR(20) default '',
|
||||
modify_dial_prefix ENUM('0','1','2','3','4','5','6') default '0'
|
||||
) ENGINE=MyISAM;
|
||||
|
||||
CREATE UNIQUE INDEX user ON vicidial_users (user);
|
||||
@@ -5413,4 +5414,4 @@ INSERT INTO `wallboard_reports` VALUES ('AGENTS_AND_QUEUES','Agents and Queues',
|
||||
|
||||
UPDATE system_settings set vdc_agent_api_active='1';
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1684',db_schema_update_date=NOW(),reload_timestamp=NOW();
|
||||
UPDATE system_settings SET db_schema_version='1685',db_schema_update_date=NOW(),reload_timestamp=NOW();
|
||||
|
||||
@@ -2350,3 +2350,9 @@ UPDATE vicidial_inbound_groups SET custom_four='' WHERE custom_four IS NULL;
|
||||
UPDATE vicidial_inbound_groups SET custom_five='' WHERE custom_five IS NULL;
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1684',db_schema_update_date=NOW() where db_schema_version < 1684;
|
||||
|
||||
ALTER TABLE vicidial_users ADD modify_dial_prefix ENUM('0','1','2','3','4','5','6') default '0';
|
||||
|
||||
UPDATE vicidial_users, system_settings SET modify_dial_prefix='1' where campaign_detail='1' and user_level >= 8 and active='Y' and db_schema_version < 1685;
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1685',db_schema_update_date=NOW() where db_schema_version < 1685;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,4 +1,4 @@
|
||||
# version: 20230518084701
|
||||
# version: 20230522084101
|
||||
users-user User ID <QXZ>This field is where you put the users ID number, can be up to 20 digits in length, Must be at least 2 characters in length. We strongly recommend not reusing user accounts for different users, for reporting accuracy. To disable a user account, set the Active option to -N-.</QXZ>
|
||||
users-pass Password <QXZ>This field is where you put the users password. Must be at least 2 characters in length. Only letters and numbers are allowed in user passwords. A medium strength user password will be at least 10 characters in length, and a strong user password will be at least 20 characters in length and have letters as well as at least one number. It is recommended that you use a longer password if possible, stringing together several unrelated words with no spaces, and a number somewhere in the string. The maximum size of a password is 100 characters.</QXZ>
|
||||
users-force_change_password Force Change Password <QXZ>If this option is set to Y then the user will be prompted to change their password the next time they log in to the administration webpage or the agent screen. Default is N.</QXZ>
|
||||
@@ -70,6 +70,7 @@ users-delete_remote_agents Delete Remote Agents <QXZ>This option if set to 1 all
|
||||
users-load_leads Load Leads <QXZ>This option if set to 1 allows the user to load lead lists into the list table by way of the web based lead loader.</QXZ>
|
||||
users-custom_fields_modify Custom Fields Modify <QXZ>This option if set to 1 allows the user to modify custom list fields.</QXZ>
|
||||
users-campaign_detail Campaign Detail <QXZ>This option if set to 1 allows the user to view and modify the campaign detail screen elements.</QXZ>
|
||||
users-modify_dial_prefix Modify Campaign Dial Prefix <QXZ>This option if set to 1 will allow the user to modify the campaign Dial Prefix, Manual Dial Prefix and 3-Way Call Dial Prefix fields, as well as the List Modify page Dial Prefix Override field. Default is 0 for disabled.</QXZ>
|
||||
users-ast_admin_access AGC Admin Access <QXZ>This option if set to 1 allows the user to login to the astGUIclient admin pages. This setting is special in that it allows for admin access to multiple admin sections by itself - vicidial conferences, conferences, group aliases, phones, phone aliases, conf templates, carriers, text-to-speech, music-on-hold, voicemail boxes, screen labels, screen colors, contacts, settings containers, status groups and CID groups.</QXZ>
|
||||
users-modify_phones Modify Phones <QXZ>This setting will allow access for the user to modify the following sections - phones, phone aliases and group aliases.</QXZ>
|
||||
users-modify_servers Modify Servers <QXZ>This setting will allow access for the user to modify the following sections - servers, settings containers, system settings, system statuses, status categories and QC status codes.</QXZ>
|
||||
|
||||
Reference in New Issue
Block a user