Skip to content
Snippets Groups Projects

Feature: Add export discretization length for JSON-export

Merged Felix Blanke requested to merge feature/add-duration-length into main
All threads resolved!
2 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
1
@@ -92,7 +92,7 @@ class AKJSONExportView(AdminViewMixin, FilterByEventSlugMixin, ListView):
@@ -92,7 +92,7 @@ class AKJSONExportView(AdminViewMixin, FilterByEventSlugMixin, ListView):
context["rooms"] = rooms
context["rooms"] = rooms
timeslots = {
timeslots = {
"info": {"duration": (1.0 / float(self.event.export_slot)), },
"info": {"duration": float(self.event.export_slot)},
"blocks": [],
"blocks": [],
}
}
Loading