Skip to content

Commit

Permalink
add sending_vehicle argument to sns send_sms (#2226)
Browse files Browse the repository at this point in the history
  • Loading branch information
sastels authored Jul 22, 2024
1 parent a0ac453 commit 0ede5db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/clients/sms/aws_sns.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def get_name(self):
return self.name

@statsd(namespace="clients.sns")
def send_sms(self, to, content, reference, multi=True, sender=None, template_id=None, service_id=None):
def send_sms(self, to, content, reference, multi=True, sender=None, template_id=None, service_id=None, sending_vehicle=None):
matched = False

for match in phonenumbers.PhoneNumberMatcher(to, "US"):
Expand Down

0 comments on commit 0ede5db

Please sign in to comment.