mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-24 16:24:08 -04:00
Update service_id to a UUID from an integer.
This commit must go along side a commit on the notifications-api app. There will be a breif outage until both app are deployed.
This commit is contained in:
@@ -31,7 +31,7 @@ from app.main.utils import (
|
||||
)
|
||||
|
||||
|
||||
@main.route("/services/<int:service_id>/sms/send", methods=['GET', 'POST'])
|
||||
@main.route("/services/<service_id>/sms/send", methods=['GET', 'POST'])
|
||||
@login_required
|
||||
def send_sms(service_id):
|
||||
form = CsvUploadForm()
|
||||
@@ -67,7 +67,7 @@ def send_sms(service_id):
|
||||
service_id=service_id)
|
||||
|
||||
|
||||
@main.route("/services/<int:service_id>/sms/check/<upload_id>",
|
||||
@main.route("/services/<service_id>/sms/check/<upload_id>",
|
||||
methods=['GET', 'POST'])
|
||||
@login_required
|
||||
def check_sms(service_id, upload_id):
|
||||
|
||||
Reference in New Issue
Block a user