From b2e014674e5f1d3572023fde4ec6dc2b4b4e94c8 Mon Sep 17 00:00:00 2001 From: jelanmathewjames <72068016+jelanmathewjames@users.noreply.github.com> Date: Mon, 26 Aug 2024 19:32:04 +0530 Subject: [PATCH] fix: url param typo --- api/dashboard/profile/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/dashboard/profile/urls.py b/api/dashboard/profile/urls.py index 5552aac6..3df921f3 100644 --- a/api/dashboard/profile/urls.py +++ b/api/dashboard/profile/urls.py @@ -21,5 +21,5 @@ path('socials//', profile_view.GetSocialsAPI.as_view()), path('qrcode-get//', profile_view.QrcodeRetrieveAPI.as_view()), path('change-password/', profile_view.ResetPasswordAPI.as_view()), - path('userterm-approved/,/',profile_view.UsertermAPI.as_view()) + path('userterm-approved//',profile_view.UsertermAPI.as_view()) ]