|
@@ -2417,6 +2417,7 @@ class Organizr
|
|
|
$this->settingsOption('input', 'traefikDomainOverride', ['label' => 'Traefik Domain for Return Override', 'help' => 'Please use a FQDN on this URL Override', 'placeholder' => 'http(s)://domain']),
|
|
$this->settingsOption('input', 'traefikDomainOverride', ['label' => 'Traefik Domain for Return Override', 'help' => 'Please use a FQDN on this URL Override', 'placeholder' => 'http(s)://domain']),
|
|
|
$this->settingsOption('select', 'debugAreaAuth', ['label' => 'Minimum Authentication for Debug Area', 'options' => $this->groupSelect(), 'settings' => '{}']),
|
|
$this->settingsOption('select', 'debugAreaAuth', ['label' => 'Minimum Authentication for Debug Area', 'options' => $this->groupSelect(), 'settings' => '{}']),
|
|
|
$this->settingsOption('multiple', 'sandbox', ['override' => 12, 'label' => 'iFrame Sandbox', 'help' => 'WARNING! This can potentially mess up your iFrames', 'options' => $this->sandboxOptions()]),
|
|
$this->settingsOption('multiple', 'sandbox', ['override' => 12, 'label' => 'iFrame Sandbox', 'help' => 'WARNING! This can potentially mess up your iFrames', 'options' => $this->sandboxOptions()]),
|
|
|
|
|
+ $this->settingsOption('multiple', 'iframeAllow', ['override' => 12, 'label' => 'iFrame Allow', 'help' => 'WARNING! This can potentially mess up your iFrames', 'options' => $this->iframeAllowOptions()]),
|
|
|
$this->settingsOption('multiple', 'blacklisted', ['override' => 12, 'label' => 'Blacklisted IP\'s', 'help' => 'WARNING! This will block anyone with these IP\'s', 'options' => $this->makeOptionsFromValues($this->config['blacklisted']), 'settings' => '{tags: true}']),
|
|
$this->settingsOption('multiple', 'blacklisted', ['override' => 12, 'label' => 'Blacklisted IP\'s', 'help' => 'WARNING! This will block anyone with these IP\'s', 'options' => $this->makeOptionsFromValues($this->config['blacklisted']), 'settings' => '{tags: true}']),
|
|
|
$this->settingsOption('code-editor', 'blacklistedMessage', ['mode' => 'html']),
|
|
$this->settingsOption('code-editor', 'blacklistedMessage', ['mode' => 'html']),
|
|
|
],
|
|
],
|
|
@@ -4434,6 +4435,7 @@ class Organizr
|
|
|
'debugArea' => $this->qualifyRequest($this->config['debugAreaAuth']),
|
|
'debugArea' => $this->qualifyRequest($this->config['debugAreaAuth']),
|
|
|
'debugErrors' => $this->config['debugErrors'],
|
|
'debugErrors' => $this->config['debugErrors'],
|
|
|
'sandbox' => $this->config['sandbox'],
|
|
'sandbox' => $this->config['sandbox'],
|
|
|
|
|
+ 'iframeAllow' => $this->config['iframeAllow'],
|
|
|
'expandCategoriesByDefault' => $this->config['expandCategoriesByDefault'],
|
|
'expandCategoriesByDefault' => $this->config['expandCategoriesByDefault'],
|
|
|
'autoCollapseCategories' => $this->config['autoCollapseCategories'],
|
|
'autoCollapseCategories' => $this->config['autoCollapseCategories'],
|
|
|
'autoExpandNavBar' => $this->config['autoExpandNavBar'],
|
|
'autoExpandNavBar' => $this->config['autoExpandNavBar'],
|