From 465baff94173e35a0d2d2ece4119bc83b25cf55b Mon Sep 17 00:00:00 2001 From: Jumana B Date: Mon, 23 Sep 2024 16:20:05 -0400 Subject: [PATCH] fix template link (#2298) --- app/user/rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/user/rest.py b/app/user/rest.py index 1d1918a71c..f9e288fce3 100644 --- a/app/user/rest.py +++ b/app/user/rest.py @@ -532,7 +532,7 @@ def send_new_template_category_request(user_id): service_id=data["service_id"], template_category_name_en=data["template_category_name_en"], template_category_name_fr=data["template_category_name_fr"], - template_id_link=f"https://{current_app.config['ADMIN_BASE_URL']}/services/{data['service_id']}/templates/{data['template_id']}", + template_id_link=f"{current_app.config['ADMIN_BASE_URL']}/services/{data['service_id']}/templates/{data['template_id']}", ) contact.tags = ["z_skip_opsgenie", "z_skip_urgent_escalation"]