Make the letter contact block (service settings form) compulsory

This commit is contained in:
Imdad Ahad
2017-09-26 14:41:07 +01:00
parent 4b96e7ba1b
commit fdabe814cc
2 changed files with 22 additions and 4 deletions

View File

@@ -489,6 +489,7 @@ class ServiceSmsSender(Form):
class ServiceLetterContactBlock(Form):
letter_contact_block = TextAreaField(
validators=[
DataRequired(message="Cant be empty"),
NoCommasInPlaceHolders()
]
)