Merge pull request #3113 from alphagov/remove-expanded

Update utils to remove toggle for expanding email previews
This commit is contained in:
Chris Hill-Scott
2019-09-03 09:15:28 +01:00
committed by GitHub
6 changed files with 5 additions and 17 deletions

View File

@@ -79,7 +79,6 @@ def view_notification(service_id, notification_id):
notification_id=notification_id, notification_id=notification_id,
filetype='png', filetype='png',
), ),
expand_emails=True,
page_count=page_count, page_count=page_count,
show_recipient=True, show_recipient=True,
redact_missing_personalisation=True, redact_missing_personalisation=True,

View File

@@ -133,7 +133,6 @@ def send_messages(service_id, template_id):
db_template, db_template,
current_service, current_service,
show_recipient=True, show_recipient=True,
expand_emails=True,
letter_preview_url=url_for( letter_preview_url=url_for(
'.view_letter_template_preview', '.view_letter_template_preview',
service_id=service_id, service_id=service_id,
@@ -363,7 +362,6 @@ def send_test_step(service_id, template_id, step_index):
db_template, db_template,
current_service, current_service,
show_recipient=True, show_recipient=True,
expand_emails=True,
letter_preview_url=url_for( letter_preview_url=url_for(
'.send_test_preview', '.send_test_preview',
service_id=service_id, service_id=service_id,
@@ -528,7 +526,6 @@ def _check_messages(service_id, template_id, upload_id, preview_row, letters_as_
db_template, db_template,
current_service, current_service,
show_recipient=True, show_recipient=True,
expand_emails=True,
letter_preview_url=url_for( letter_preview_url=url_for(
'.check_messages_preview', '.check_messages_preview',
service_id=service_id, service_id=service_id,
@@ -857,7 +854,6 @@ def _check_notification(service_id, template_id, exception=None):
db_template, db_template,
current_service, current_service,
show_recipient=True, show_recipient=True,
expand_emails=True,
email_reply_to=email_reply_to, email_reply_to=email_reply_to,
sms_sender=sms_sender, sms_sender=sms_sender,
letter_preview_url=url_for( letter_preview_url=url_for(

View File

@@ -63,7 +63,6 @@ def view_template(service_id, template_id):
template=get_template( template=get_template(
template, template,
current_service, current_service,
expand_emails=True,
letter_preview_url=url_for( letter_preview_url=url_for(
'.view_letter_template_preview', '.view_letter_template_preview',
service_id=service_id, service_id=service_id,
@@ -251,7 +250,6 @@ def _view_template_version(service_id, template_id, version, letters_as_pdf=Fals
return dict(template=get_template( return dict(template=get_template(
current_service.get_template(template_id, version=version), current_service.get_template(template_id, version=version),
current_service, current_service,
expand_emails=True,
letter_preview_url=url_for( letter_preview_url=url_for(
'.view_template_version_preview', '.view_template_version_preview',
service_id=service_id, service_id=service_id,
@@ -674,7 +672,6 @@ def delete_service_template(service_id, template_id):
template=get_template( template=get_template(
template, template,
current_service, current_service,
expand_emails=True,
letter_preview_url=url_for( letter_preview_url=url_for(
'.view_letter_template_preview', '.view_letter_template_preview',
service_id=service_id, service_id=service_id,
@@ -697,7 +694,6 @@ def confirm_redact_template(service_id, template_id):
template=get_template( template=get_template(
template, template,
current_service, current_service,
expand_emails=True,
letter_preview_url=url_for( letter_preview_url=url_for(
'.view_letter_template_preview', '.view_letter_template_preview',
service_id=service_id, service_id=service_id,
@@ -738,7 +734,6 @@ def view_template_versions(service_id, template_id):
get_template( get_template(
template, template,
current_service, current_service,
expand_emails=True,
letter_preview_url=url_for( letter_preview_url=url_for(
'.view_template_version_preview', '.view_template_version_preview',
service_id=service_id, service_id=service_id,

View File

@@ -343,7 +343,6 @@ def get_template(
template, template,
service, service,
show_recipient=False, show_recipient=False,
expand_emails=False,
letter_preview_url=None, letter_preview_url=None,
page_count=1, page_count=1,
redact_missing_personalisation=False, redact_missing_personalisation=False,
@@ -355,7 +354,6 @@ def get_template(
template, template,
from_name=service.name, from_name=service.name,
from_address='{}@notifications.service.gov.uk'.format(service.email_from), from_address='{}@notifications.service.gov.uk'.format(service.email_from),
expanded=expand_emails,
show_recipient=show_recipient, show_recipient=show_recipient,
redact_missing_personalisation=redact_missing_personalisation, redact_missing_personalisation=redact_missing_personalisation,
reply_to=email_reply_to, reply_to=email_reply_to,

View File

@@ -23,4 +23,4 @@ awscli-cwlogs>=1.4,<1.5
# Putting upgrade on hold due to v1.0.0 using sha512 instead of sha1 by default # Putting upgrade on hold due to v1.0.0 using sha512 instead of sha1 by default
itsdangerous==0.24 # pyup: <1.0.0 itsdangerous==0.24 # pyup: <1.0.0
git+https://github.com/alphagov/notifications-utils.git@33.2.9#egg=notifications-utils==33.2.9 git+https://github.com/alphagov/notifications-utils.git@34.0.0#egg=notifications-utils==34.0.0

View File

@@ -25,13 +25,13 @@ awscli-cwlogs>=1.4,<1.5
# Putting upgrade on hold due to v1.0.0 using sha512 instead of sha1 by default # Putting upgrade on hold due to v1.0.0 using sha512 instead of sha1 by default
itsdangerous==0.24 # pyup: <1.0.0 itsdangerous==0.24 # pyup: <1.0.0
git+https://github.com/alphagov/notifications-utils.git@33.2.9#egg=notifications-utils==33.2.9 git+https://github.com/alphagov/notifications-utils.git@34.0.0#egg=notifications-utils==34.0.0
## The following requirements were added by pip freeze: ## The following requirements were added by pip freeze:
awscli==1.16.228 awscli==1.16.230
bleach==3.1.0 bleach==3.1.0
boto3==1.6.16 boto3==1.6.16
botocore==1.12.218 botocore==1.12.220
certifi==2019.6.16 certifi==2019.6.16
chardet==3.0.4 chardet==3.0.4
Click==7.0 Click==7.0
@@ -55,7 +55,7 @@ monotonic==1.5
openpyxl==2.5.14 openpyxl==2.5.14
orderedset==2.0.1 orderedset==2.0.1
phonenumbers==8.10.13 phonenumbers==8.10.13
pyasn1==0.4.6 pyasn1==0.4.7
pyexcel-ezodf==0.3.4 pyexcel-ezodf==0.3.4
PyJWT==1.7.1 PyJWT==1.7.1
PyPDF2==1.26.0 PyPDF2==1.26.0