Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions legacy/src/Command/Integration/IntegrationCommandBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -622,6 +622,14 @@ private function getFields(): array
'required' => false,
'avoidQuestion' => true,
]),
'redaction' => new BooleanField('Redaction', [
'conditions' => ['type' => $logForwardingTypes],
'description' => 'Whether to enable built-in PII redaction (e.g. email addresses) before forwarding log lines',
'questionLine' => 'Should built-in PII redaction be enabled',
'default' => false,
'required' => false,
'avoidQuestion' => true,
]),
'headers' => new ArrayField('HTTP header', [
'optionName' => 'header',
'conditions' => ['type' => [
Expand Down