Browse Source

AESOP už nepotřebuje práva

řeší se to HTTP Basic auth v nginxu
middleware_test
Pavel "LEdoian" Turinsky 3 years ago
parent
commit
66aca1e785
  1. 6
      seminar/urls.py

6
seminar/urls.py

@ -71,17 +71,17 @@ urlpatterns = [
# Aesop
path(
'aesop-export/mam-rocnik-<int:prvni_rok>.csv',
org_required(export.ExportRocnikView.as_view()),
export.ExportRocnikView.as_view(),
name='seminar_export_rocnik'
),
path(
'aesop-export/mam-sous-<str:datum_zacatku>.csv',
org_required(export.ExportSousView.as_view()),
export.ExportSousView.as_view(),
name='seminar_export_sous'
),
path(
'aesop-export/index.csv',
org_required(export.ExportIndexView.as_view()),
export.ExportIndexView.as_view(),
name='seminar_export_index'
),

Loading…
Cancel
Save