edit route url
This commit is contained in:
SDE
2023-07-31 19:31:53 +03:00
parent 2e9200953e
commit dab15df837
6 changed files with 44 additions and 15 deletions

13
ChatServiceApp/js_urls.py Normal file
View File

@@ -0,0 +1,13 @@
# coding=utf-8
from django.urls import path
# from AuthApp.js_views import *
# from AuthApp.import_funcs import *
from .js_views import *
from django.contrib.auth import views
from RoutesApp.js_views import new_route_view_ajax
urlpatterns = [
path('support_create_ticket_ajax/', support_create_ticket_ajax, name='support_create_ticket_ajax'),
# path('create_/', registration_ajax, name='registration_ajax'),
]