Skip to content

Commit a668698

Browse files
Disable user validation and management features
1 parent 6fa8d1c commit a668698

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

license/license/config.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
$marketplace_config = array(
44
'name' => 'SampleLicenseAddon', //The matches the id value in your manifest file. This allow the library to lookup addon version from upgrade_history, so you can see what version of addon your customers are using
55
'shortname' => 'samplelicenseaddon', //The short name of the Add-on. e.g. For the url https://marketplace.sugarcrm.com/addons/sugarmarketplace the shortname would be sugarmarketplace
6-
'public_key' => '331508e5cdffc82904af8a7af6618ec2', //The public key associated with the group
6+
'public_key' => '', //The public key associated with the group
77
'api_url' => 'https://marketplace.sugarcrm.com/api/v1',
8-
'validate_users' => true,
9-
'manage_licensed_users' => true, //Enable the user management tool to determine which users will be licensed to use the add-on. validate_users must be set to true if this is enabled. If the add-on must be licensed for all users then set this to false.
8+
'validate_users' => false,
9+
'manage_licensed_users' => false, //Enable the user management tool to determine which users will be licensed to use the add-on. validate_users must be set to true if this is enabled. If the add-on must be licensed for all users then set this to false.
1010
'validation_frequency' => 'weekly', //default: weekly options: hourly, daily, weekly
1111
'continue_url' => '', //[optional] Will show a button after license validation that will redirect to this page. Could be used to redirect to a configuration page such as index.php?module=MyCustomModule&action=config
1212
);

0 commit comments

Comments
 (0)