From 05e904387266c001a46c0b8fb1515d69d60d3c0c Mon Sep 17 00:00:00 2001 From: Valentin Deniaud Date: Tue, 11 Jan 2022 15:00:52 +0100 Subject: [PATCH 1/2] manager: allow first access to event recurrence with view permission (#60504) --- chrono/manager/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrono/manager/views.py b/chrono/manager/views.py index 20f5d550..dfa7923a 100644 --- a/chrono/manager/views.py +++ b/chrono/manager/views.py @@ -2975,7 +2975,7 @@ class EventCancellationReportListView(ViewableAgendaMixin, ListView): event_cancellation_report_list = EventCancellationReportListView.as_view() -class EventCreateRecurrenceView(ManagedAgendaMixin, RedirectView): +class EventCreateRecurrenceView(ViewableAgendaMixin, RedirectView): def get_redirect_url(self, *args, **kwargs): event_slug, datetime_str = kwargs['event_identifier'].split(':') try: -- 2.30.2