Add question about research consent

Since GDPR came into effect it’s less clear about whether we can
contact teams for user research purposes.

If we make people opt-in (or not) we know we’re safe to contact them (or
not).

Since we mostly care about how services are using Notify for real (ie
live services) or services that are considering adopting it (ie those
who have contacted us with a question) it feels like the go-live process
is the most appropriate place to collect this consent.
This commit is contained in:
Chris Hill-Scott
2018-08-30 11:51:34 +01:00
parent 12e0e12ced
commit 86ad77e545
5 changed files with 25 additions and 10 deletions

View File

@@ -581,6 +581,14 @@ class RequestToGoLiveForm(StripWhitespaceForm):
'How many letters do you expect to send in the next year?',
validators=[DataRequired(message='Cant be empty')]
)
research_consent = RadioField(
'Can we contact you when were doing user research?',
choices=[
('yes', 'Yes'),
('no', 'No'),
],
validators=[DataRequired()]
)
class ProviderForm(StripWhitespaceForm):