Merge pull request #3588 from alphagov/broadcast-tour-rework

Refine the broadcast tour based on what we’ve learned in research
This commit is contained in:
Chris Hill-Scott
2020-08-24 14:28:34 +01:00
committed by GitHub
13 changed files with 3008 additions and 2596 deletions

View File

@@ -23,7 +23,7 @@ from app.utils import service_has_permission, user_has_permissions
@user_has_permissions()
@service_has_permission('broadcast')
def broadcast_tour(service_id, step_index):
if step_index not in (1, 2, 3):
if step_index not in (1, 2, 3, 4):
abort(404)
return render_template(
f'views/broadcast/tour/{step_index}.html'