Removed unused code that is not fully implemented

This commit is contained in:
alexjanousekGSA
2025-07-02 15:25:57 -04:00
parent ac226f5ad8
commit 7447a0080c
5 changed files with 0 additions and 296 deletions

View File

@@ -1890,14 +1890,3 @@ class AdminClearCacheForm(StripWhitespaceForm):
def validate_model_type(self, field):
if not field.data:
raise ValidationError("Select at least one option")
class ChangeSecurityKeyNameForm(StripWhitespaceForm):
security_key_name = GovukTextInputField(
"Name of key",
validators=[
DataRequired(message="Cannot be empty"),
MustContainAlphanumericCharacters(),
Length(max=255, message="Name of key must be 255 characters or fewer"),
],
)