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
3 changes: 0 additions & 3 deletions application/forms/Config/GeneralConfigForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,6 @@ public function createElements(array $formData)
'placeholder' => 30,
'description' => $this->translate('JWT Token expiration in seconds. A very short time is recommended. Default 30 seconds.'),
'required' => false,
'class' => 'autosubmit',
]
);
$this->addElement(
Expand All @@ -378,7 +377,6 @@ public function createElements(array $formData)
'label' => $this->translate('JWT Issuer'),
'description' => $this->translate('The issuer of the token (e.g. URL of this system). Can be used as a validation when other systems receive the token. Default is empty, no issuer.'),
'required' => false,
'class' => 'autosubmit',
]
);
$this->addElement(
Expand All @@ -389,7 +387,6 @@ public function createElements(array $formData)
'label' => $this->translate('JWT Subject (login)'),
'description' => $this->translate('The username or email to be used as login. Leave empty to use the Icinga Web username.'),
'required' => false,
'class' => 'autosubmit',
]
);
}
Expand Down