Skip to main content

Interface Access

Depending on user profiles, you may need to allow or restrict access to certain parts of the backup interface.

The strategy keys below allow you to control access to specific parts of the interface.

KeyControl
AccessControl.CanAccessAdministrationAdministration tab
AccessControl.CanAccessBackupBackup tab
AccessControl.CanAccessConfigurationConfiguration tab
AccessControl.CanAccessRestoreRestore tab
AccessControl.CanAccessSupervisionSupervision tab
AccessControl.CanAccessUIEntire user interface
AccessControl.CanUnconfigureAccountShows or hides the "unlink agent configuration" button in the diagnostics screen
AccessControl.CanIgnoreSupervisionEventsShows or hides the buttons used to ignore errors in supervision
Configuration.HideContactShows or hides support contact details in the interface and email reports

Possible values for these keys are:

  • true to allow access or display contact details (default)
  • false to block access or hide contact details

Example

You do not want your users to be able to access application settings, backup configuration, or administration.

However, you want them to be able to monitor their backup activity and restore their own data.

Resulting strategy:

    AccessControl.CanAccessSupervision : true
AccessControl.CanAccessRestore : true
AccessControl.CanAccessConfiguration : false
AccessControl.CanAccessBackup : false
AccessControl.CanAccessAdministration : false
AccessControl.CanUnconfigureAccount : false
AccessControl.CanIgnoreSupervisionEvents : false

Note: The keys in the first two lines are optional, as they only enforce the default values.