fix: correct typo in application_id parameter for get_url endpoint

This commit is contained in:
wxg0103 2025-11-28 10:17:54 +08:00
parent 15a44158be
commit 47939ac6c0

View File

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