diff --git a/app/main/views/api_keys.py b/app/main/views/api_keys.py index e3aa9bca5..4f8c3b29e 100644 --- a/app/main/views/api_keys.py +++ b/app/main/views/api_keys.py @@ -123,7 +123,7 @@ def revoke_api_key(service_id, key_id): flash( [ "Are you sure you want to revoke ‘{}’?".format(key_name), - "You will not be able to use this API key to connect to U.S. Notify.", + "You will not be able to use this API key to connect to Notify.gov.", ], "revoke this API key", ) diff --git a/app/main/views/index.py b/app/main/views/index.py index 5ee4cac23..9ad92a285 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -135,7 +135,7 @@ def email_template(): "\n" "10. Three" "\n\n" - "This is an example of an email sent using U.S. Notify." + "This is an example of an email sent using Notify.gov." "\n\n" "https://www.notifications.service.gov.uk" ), diff --git a/app/main/views/send.py b/app/main/views/send.py index 87b795cd1..b4b5c2a16 100644 --- a/app/main/views/send.py +++ b/app/main/views/send.py @@ -371,7 +371,7 @@ def send_one_off_step(service_id, template_id, step_index): elif db_template["template_type"] == "sms": sms_sender = ( get_sms_sender_from_session() - ) # TODO: verify default sender is U.S. Notify + ) # TODO: verify default sender is Notify.gov template_values = get_recipient_and_placeholders_from_session( db_template["template_type"] diff --git a/docs/sprint-goals.md b/docs/sprint-goals.md index f774da9c5..ae4b40727 100644 --- a/docs/sprint-goals.md +++ b/docs/sprint-goals.md @@ -26,7 +26,7 @@ | Engineering | Reduce [technical debt](https://github.com/GSA/notifications-api/issues/361) and stabilize application; carry out rigorous [testing](https://github.com/GSA/notifications-api/issues/312) of features and [infrastructure](https://github.com/GSA/notifications-api/issues/87); solve known [bugs](https://github.com/GSA/notifications-api/issues/360) | Increase app reliability prior to first partner use | | UX | Continue [user testing interviews](https://github.com/GSA/notifications-admin/issues/592) and feedback; Kick off internal message recipient [opt-out test](https://github.com/GSA/notifications-admin/issues/395) | Gain feedback on usability and functionality in order to find bugs, streamline confusing flows, and adjust processes | | Security | (Assessment has begun!) Respond to any assessment questions and/or needs | Keep the LATO award timeline as short as possible| -| Content | Perform an application and documentation audit to [replace instances](https://github.com/GSA/notifications-admin/issues/631) of `U.S. Notify` with `Notify.gov` | Reflect a more streamlined brand +| Content | Perform an application and documentation audit to [replace instances](https://github.com/GSA/notifications-admin/issues/631) of `Notify.gov` with `Notify.gov` | Reflect a more streamlined brand ## Sprint: Northern Screamer (7/5/23) @@ -64,7 +64,7 @@ |-------------|-----------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------| | Engineering | Moving from an ad-hoc "complete must-haves" process to a more strategic, themed progression; examining and implementing a structure for [Architecture Decision Records](https://github.com/GSA/notifications-admin/issues/522); assessing and planning for timezone accommodations in both [back-end](https://github.com/GSA/notifications-api/issues/260) and [UI](https://github.com/GSA/notifications-admin/issues/525) | Less context-switching; better documentation and prioritization; a clear strategy and content regarding timezones for users | | UX | Wrap first iteration of [USWDS component migration](https://github.com/GSA/notifications-admin/issues/453); [propose new flows and wireframes](https://github.com/GSA/notifications-admin/issues/455) | A U.S. government look and feel; easier user navigation | -| Content | [Hone content](https://github.com/GSA/notifications-admin/issues/523) for [U.S. Notify-specific aspects](https://github.com/GSA/notifications-admin/issues/521); finalize [style and terminology docs](https://github.com/GSA/notifications-admin/issues/481) | Clear and applicable documentation and direction in the application | +| Content | [Hone content](https://github.com/GSA/notifications-admin/issues/523) for [Notify.gov-specific aspects](https://github.com/GSA/notifications-admin/issues/521); finalize [style and terminology docs](https://github.com/GSA/notifications-admin/issues/481) | Clear and applicable documentation and direction in the application | | Security | Respond to any assessment questions and/or needs | Keep the LATO award timeline as short as possible ## Sprint: Jabiru (5/11/23) @@ -83,7 +83,7 @@ |-------------|-----------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------| | Engineering | Focus effort on Pilot "Must Haves", settle on a retention strategy | A usable, functioning MVP that meets LATO restrictions while maximizing message volume and experience | | UX | Remove unnecessary components from existing site, create strategy to implement USWDS and begin migrating components. | A better, more simple experience that will start to accomplish a common look and feel as well as meet accessibility standards. | -| Content | Execute low-lift content tweaks; make necessary decisions and begin medium-to-high effort changes based on audit recommendations. | Future users will have at least logical content and documentation to follow, that reflects actual quotas and is applicable to U.S. Notify. | +| Content | Execute low-lift content tweaks; make necessary decisions and begin medium-to-high effort changes based on audit recommendations. | Future users will have at least logical content and documentation to follow, that reflects actual quotas and is applicable to Notify.gov. | | Security | Respond to any assessment questions ASAP, shore up docs, transition to new POC | Keep the LATO award timeline as short as possible, prepare for Ryan's rolling off the project | ## Sprint: Heron (4/13/23) diff --git a/tests/app/main/views/test_api_integration.py b/tests/app/main/views/test_api_integration.py index 560af5e3a..373bd5cd5 100644 --- a/tests/app/main/views/test_api_integration.py +++ b/tests/app/main/views/test_api_integration.py @@ -260,7 +260,7 @@ def test_should_show_confirm_revoke_api_key( ) assert normalize_spaces(page.select(".banner-dangerous")[0].text) == ( "Are you sure you want to revoke ‘some key name’? " - "You will not be able to use this API key to connect to U.S. Notify. " + "You will not be able to use this API key to connect to Notify.gov. " "Yes, revoke this API key" ) assert mock_get_api_keys.call_args_list == [