support chat v3
This commit is contained in:
SDE
2023-08-24 16:48:13 +03:00
parent 4f294455cc
commit 30b090c527
4 changed files with 9 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
from .models import *
def get_routes_Dict(user=None):
def get_routes_Dict(user=None, data=None):
from ReferenceDataApp.models import Airport, Country, City
# if not user and user.is_authenticated:

View File

@@ -11,4 +11,5 @@ urlpatterns = [
path('edit_route/', edit_route_ajax, name='edit_route_ajax'),
path('get_routes/', get_routes_ajax, name='get_routes_ajax'),
]