mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-18 05:29:38 -04:00
Remove 40604 as fallback
We should just be using whatever is in the database. Should not be merged until the DB migration is done.
This commit is contained in:
@@ -36,7 +36,7 @@
|
||||
|
||||
{% call row() %}
|
||||
{{ text_field('Text message sender') }}
|
||||
{{ text_field(current_service.sms_sender or '40604') }}
|
||||
{{ text_field(current_service.sms_sender or 'GOVUK') }}
|
||||
{{ edit_field('Change', url_for('.service_set_sms_sender', service_id=current_service.id)) }}
|
||||
{% endcall %}
|
||||
|
||||
|
||||
@@ -269,7 +269,7 @@ def get_template(
|
||||
return SMSPreviewTemplate(
|
||||
template,
|
||||
prefix=service['name'],
|
||||
sender=service['sms_sender'],
|
||||
sender=(service['sms_sender'] not in {'GOVUK', None}),
|
||||
show_recipient=show_recipient
|
||||
)
|
||||
if 'letter' == template['template_type']:
|
||||
|
||||
Reference in New Issue
Block a user