From 1178cbc5c43cc829460cdec1f1495cbe7be01501 Mon Sep 17 00:00:00 2001 From: Michelle Rago <60157596+michelle-rago@users.noreply.github.com> Date: Mon, 11 Dec 2023 19:56:39 -0500 Subject: [PATCH] Add language to say that an available domain is not guaranteed (#1461) * Add language to say that an available domain is not guaranteed * Linting fun * More fun with lint * Update views.py * Update domain API success message string --------- Co-authored-by: Erin <121973038+erinysong@users.noreply.github.com> --- src/api/views.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/api/views.py b/src/api/views.py index 700a8b1d5..068844919 100644 --- a/src/api/views.py +++ b/src/api/views.py @@ -32,7 +32,9 @@ DOMAIN_API_MESSAGES = { "Read more about choosing your .gov domain.".format(public_site_url("domains/choosing")) ), "invalid": "Enter a domain using only letters, numbers, or hyphens (though we don't recommend using hyphens).", - "success": "That domain is available!", + "success": "That domain is available! We’ll try to give you the domain you want, \ + but it's not guaranteed. After you complete this form, we’ll \ + evaluate whether your request meets our requirements.", "error": GenericError.get_error_message(GenericErrorCodes.CANNOT_CONTACT_REGISTRY), }