Skip to content

Commit

Permalink
Fix filterEmails endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
krzys-h committed Dec 29, 2020
1 parent 7b578e1 commit 9f1cb1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wwwapp/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
path('<int:year>/lecturers/', views.lecturers_view, name='lecturers'),
path('people/', views.participants_view, name='all_people'),
path('filterEmails/', mail_views.filtered_emails_view, name='filter_emails'),
path('filterEmails/<int:year>/<int:filter_id>/', mail_views.filtered_emails_view, name='filter_emails'),
path('filterEmails/<int:year>/<slug:filter_id>/', mail_views.filtered_emails_view, name='filter_emails'),
path('template_for_workshop_page/', views.template_for_workshop_page_view, name='template_for_workshop_page'),
path('program/', views.program_view, name='latest_program'),
path('<int:year>/program/', views.program_view, name='program'),
Expand Down

0 comments on commit 9f1cb1e

Please sign in to comment.