Skip to content
Snippets Groups Projects
Verified Commit 723b644f authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Fix get_single_events to expand by default

(cherry picked from commit 40652f62)
parent 1c115a17
No related branches found
No related tags found
1 merge request!1887Resolve "Make get_single_events expand by default"
Pipeline #200032 passed with warnings
......@@ -77,6 +77,7 @@ Fixed
* [Dev] Do not exhaust PostgreSQL max_connections in development
* Editing managed objects was possible in inline lists.
* PDF generation took very long due to not properly closed selenium sessions
* [Dev] `get_single_events` didn't expand events by default.
Removed
~~~~~~~
......
......@@ -1015,7 +1015,7 @@ class CalendarEventMixin(DAVResource, RegistryObject, is_registry=True):
params: dict[str, any] | None = None,
with_reference_object: bool = False,
queryset: Optional[QuerySet] = None,
expand: bool | None = False,
expand: bool | None = True,
**kwargs,
):
"""Get single events for this calendar feed."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment