mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-22 16:31:15 -05:00
Add request_to_go_live_notes column to Organisation table
This column will be used to stores extra notes that should go in the Zendesk ticket when a service belonging to that organisation requests to go live.
This commit is contained in:
@@ -52,6 +52,7 @@ def test_get_organisation_by_id(admin_request, notify_db_session):
|
||||
'letter_branding_id',
|
||||
'email_branding_id',
|
||||
'domains',
|
||||
'request_to_go_live_notes',
|
||||
}
|
||||
assert response['id'] == str(org.id)
|
||||
assert response['name'] == 'test_org_1'
|
||||
@@ -64,6 +65,7 @@ def test_get_organisation_by_id(admin_request, notify_db_session):
|
||||
assert response['letter_branding_id'] is None
|
||||
assert response['email_branding_id'] is None
|
||||
assert response['domains'] == []
|
||||
assert response['request_to_go_live_notes'] is None
|
||||
|
||||
|
||||
def test_get_organisation_by_id_returns_domains(admin_request, notify_db_session):
|
||||
|
||||
Reference in New Issue
Block a user