24 lines
823 B
Python
24 lines
823 B
Python
# 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('registration/', registration_ajax, name='registration_ajax'),
|
|
path('login/', login_ajax, name='login_ajax'),
|
|
|
|
path('new_route_view/', new_route_view_ajax, name='new_route_view_ajax'),
|
|
|
|
|
|
path('my_routes/', my_routes_ajax, name='my_routes_ajax'),
|
|
path('subscribe/', subscribe_ajax, name='subscribe_ajax'),
|
|
path('new_msg_to_user/', new_msg_to_user_ajax, name='new_msg_to_user' ),
|
|
|
|
path('new_msg_to_support/', new_msg_to_support_ajax, name='new_msg_to_support_ajax'),
|
|
|
|
|
|
path('change_profile/', change_profile_ajax, name='change_profile_ajax'),
|
|
] |