notify-api-446 change default text message sender from U.S. Notify

This commit is contained in:
Kenneth Kehl
2023-08-31 08:21:28 -07:00
parent 155ea99b36
commit b5d795e09e
5 changed files with 7 additions and 7 deletions

View File

@@ -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",
)

View File

@@ -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"
),

View File

@@ -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"]

View File

@@ -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)

View File

@@ -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 == [