mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-11 09:28:27 -04:00
Remove the MoU question from request to go live
This question was designed to make people feel like it was OK to submit their request without getting the MoU signed. We reckoned that this was the fastest way of getting their service live (because the MoU is the bit that’s most likely to slow them down). We now have a better way of telling people: - if they’ve signed the MoU already - or to contact us if they haven’t (which is what the majority of teams seem to do now) We were never actually using the answer to this question – we were still checking for every service whether they had it signed. So this commit removes this now-redundant question.
This commit is contained in:
@@ -554,18 +554,6 @@ class Triage(StripWhitespaceForm):
|
||||
|
||||
|
||||
class RequestToGoLiveForm(StripWhitespaceForm):
|
||||
mou = RadioField(
|
||||
(
|
||||
'Has your organisation accepted the GOV.UK Notify data sharing and financial '
|
||||
'agreement?'
|
||||
),
|
||||
choices=[
|
||||
('yes', 'Yes'),
|
||||
('no', 'No'),
|
||||
('don’t know', 'I don’t know')
|
||||
],
|
||||
validators=[DataRequired()]
|
||||
)
|
||||
channel_email = BooleanField('Emails')
|
||||
channel_sms = BooleanField('Text messages')
|
||||
channel_letter = BooleanField('Letters')
|
||||
|
||||
@@ -198,7 +198,6 @@ def submit_request_to_go_live(service_id):
|
||||
'\n---'
|
||||
'\nOrganisation type: {}'
|
||||
'\nAgreement signed: {}'
|
||||
'\nMOU in place: {}'
|
||||
'\nChannel: {}\nStart date: {}\nStart volume: {}'
|
||||
'\nPeak volume: {}'
|
||||
'\nFeatures: {}'
|
||||
@@ -207,7 +206,6 @@ def submit_request_to_go_live(service_id):
|
||||
url_for('main.service_dashboard', service_id=current_service['id'], _external=True),
|
||||
current_service['organisation_type'],
|
||||
GovernmentDomain.from_current_user().as_human_readable,
|
||||
form.mou.data,
|
||||
formatted_list(filter(None, (
|
||||
'email' if form.channel_email.data else None,
|
||||
'text messages' if form.channel_sms.data else None,
|
||||
|
||||
@@ -14,13 +14,6 @@
|
||||
<h1 class="heading-large">Request to go live</h1>
|
||||
|
||||
<form method="post">
|
||||
<div class="form-group">
|
||||
<p>We need permission to process your data before we can make your service live.</p>
|
||||
{{ radios(form.mou, option_hints={
|
||||
'no': 'We’ll send you a copy',
|
||||
'don’t know': 'We’ll check for you',
|
||||
}) }}
|
||||
</div>
|
||||
{{ checkbox_group('What kind of messages will you be sending?', [
|
||||
form.channel_email,
|
||||
form.channel_sms,
|
||||
|
||||
@@ -566,7 +566,6 @@ def test_should_redirect_after_request_to_go_live(
|
||||
'main.submit_request_to_go_live',
|
||||
service_id=SERVICE_ONE_ID,
|
||||
_data={
|
||||
'mou': 'yes',
|
||||
'channel_email': 'y',
|
||||
'channel_sms': 'y',
|
||||
'start_date': '01/01/2017',
|
||||
|
||||
Reference in New Issue
Block a user