files in chat download
This commit is contained in:
SDE
2023-09-17 19:17:48 +03:00
parent 2d25fd3e38
commit 9b7fbe8fd3
5 changed files with 59 additions and 8 deletions

11
ChatServiceApp/urls.py Normal file
View File

@@ -0,0 +1,11 @@
# 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'),
]