This commit is contained in:
James Moffet
2022-07-20 15:23:54 -07:00
parent c1cf7be104
commit e53d12733a
50 changed files with 10251 additions and 330 deletions

View File

@@ -1,9 +1,8 @@
commonly_used_passwords = [
'govuknotify',
'GOVUKnotify',
'GOV.UK Notify',
'GOV.UK notify',
'gov.uk notify'
'usnotify',
'USnotify',
'us Notify',
'us notify'
] + [
'11111111',
'12345678',

View File

@@ -125,7 +125,7 @@ def revoke_api_key(service_id, key_id):
if request.method == 'GET':
flash([
"Are you sure you want to revoke {}?".format(key_name),
"You will not be able to use this API key to connect to GOV.UK Notify."
"You will not be able to use this API key to connect to US Notify."
], 'revoke this API key')
return render_template(
'views/api/keys.html',

View File

@@ -76,7 +76,7 @@ def triage(ticket_type=PROBLEM_TICKET_TYPE):
form=form,
page_title={
PROBLEM_TICKET_TYPE: 'Report a problem',
GENERAL_TICKET_TYPE: 'Contact GOV.UK Notify support',
GENERAL_TICKET_TYPE: 'Contact US Notify support',
}.get(ticket_type)
)
@@ -151,7 +151,7 @@ def feedback(ticket_type):
),
show_status_page_banner=(ticket_type == PROBLEM_TICKET_TYPE),
page_title={
GENERAL_TICKET_TYPE: 'Contact GOV.UK Notify support',
GENERAL_TICKET_TYPE: 'Contact US Notify support',
PROBLEM_TICKET_TYPE: 'Report a problem',
QUESTION_TICKET_TYPE: 'Ask a question or give feedback',
}.get(ticket_type),

View File

@@ -133,7 +133,7 @@ def email_template():
'\n'
'10. Three'
'\n\n'
'This is an example of an email sent using GOV.UK Notify.'
'This is an example of an email sent using US Notify.'
'\n\n'
'https://www.notifications.service.gov.uk'
)