From 3a54abc534cdaec893c120e4a6e37d043af1ae33 Mon Sep 17 00:00:00 2001 From: Shavkatjon Odamboyev <153182519+Shavkatjon-O@users.noreply.github.com> Date: Thu, 12 Sep 2024 11:46:10 +0500 Subject: [PATCH] feat: add payments urls to core urls --- core/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/core/urls.py b/core/urls.py index 2d1e9ea..e1ba80f 100644 --- a/core/urls.py +++ b/core/urls.py @@ -39,6 +39,7 @@ def redirect_base_to_admin(request): path("api/chats/", include("apps.chats.urls")), path("api/tasks/", include("apps.planners.urls")), path("api/clients/", include("apps.clients.urls")), + path("api/payments/", include("apps.payments.urls")), ] # if not settings.DEBUG: