11 lines
346 B
Python
11 lines
346 B
Python
# coding=utf-8
|
|
from django.urls import path
|
|
# from AuthApp.js_views import *
|
|
# from AuthApp.import_funcs import *
|
|
from .views import *
|
|
from django.contrib.auth import views
|
|
from RoutesApp.js_views import new_route_view_ajax
|
|
|
|
urlpatterns = [
|
|
path('get_file/<str:msg_id>/<str:file_name>', get_file_from_message, name='get_file_from_message'),
|
|
] |