feat: update get_url endpoint to include application ID in the URL

This commit is contained in:
wxg0103 2025-11-28 10:16:13 +08:00
parent 94b2659019
commit 15a44158be

View File

@ -6,5 +6,5 @@ app_name = 'oss'
urlpatterns = [
path('oss/file', views.FileView.as_view()),
path('oss/get_url', views.GetUrlView.as_view()),
path('oss/get_url/<str:applucation_id>', views.GetUrlView.as_view()),
]