Allows services to choose if they can send letters

Our support ticket analysis shows that the most common action request
after going live is turning on letters.

We just do this for any team that requests it – there’s no gatekeeping.
So we should just allow people to make the change themselves.

This will be a better experience for our users, and less work for us.
The design of the page replicates roughly what we have for international
text messaging.
This commit is contained in:
Chris Hill-Scott
2018-01-19 13:45:54 +00:00
parent 5ac0d2a23f
commit 555392b5da
5 changed files with 72 additions and 60 deletions

View File

@@ -584,6 +584,17 @@ class ServiceLetterContactBlockForm(StripWhitespaceForm):
)
class ServiceSwitchLettersForm(StripWhitespaceForm):
enabled = RadioField(
'Send letters',
choices=[
('on', 'On'),
('off', 'Off'),
],
)
class ServiceBrandingOrg(StripWhitespaceForm):
def __init__(self, organisations=[], *args, **kwargs):