AESOP už nepotřebuje práva

řeší se to HTTP Basic auth v nginxu
This commit is contained in:
Pavel "LEdoian" Turinsky 2021-05-26 00:25:51 +02:00
parent aba6b1868d
commit 66aca1e785

View file

@ -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'
),