Allow custom notes when service goes live

This adds an option on the organisation settings page to add
'request_to_go_live_notes'. When a service belonging to this
organisation requests to go live, any go live notes for the
organisation will be added to the Zendesk ticket in the 'Agreement
signed' section.
This commit is contained in:
Katie Smith
2019-05-13 14:50:40 +01:00
parent e4b1759b3b
commit da971b2da7
9 changed files with 186 additions and 6 deletions

View File

@@ -195,6 +195,7 @@ def organisation_json(
crown=True,
agreement_signed=False,
organisation_type='',
request_to_go_live_notes=None,
):
if users is None:
users = []
@@ -215,6 +216,7 @@ def organisation_json(
'agreement_signed_at': None,
'agreement_signed_by': None,
'domains': domains or [],
'request_to_go_live_notes': request_to_go_live_notes,
}