Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Kehl committed Jul 31, 2024
1 parent ace04bd commit 0b96a51
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,10 @@ def download_csv_file_by_name(csv_filename):

@notify_command(name="dump-sms-senders")
@click.argument("service_name")
def dump_user_info(service_name):
def dump_sms_senders(service_name):

# poetry run flask command dump-sms-senders MyServiceName
# cf run-task notify-api-production --command "flask command dump-sms-senders MyServiceName"
services = get_services_by_partial_name(service_name)
if len(services) > 1:
raise ValueError(
Expand Down

0 comments on commit 0b96a51

Please sign in to comment.