db_kyc_project/backend/users/urls/internal_urls.py

8 lines
193 B
Python
Raw Normal View History

2024-12-10 23:31:35 +03:00
from django.urls import path
from users.views import get_token, check_registration
urlpatterns = [
path('get-token/<int:pk>', get_token),
path('check/<int:pk>', check_registration),
]