OpenSlides/openslides/mediafiles/projector.py

21 lines
620 B
Python
Raw Normal View History

2018-12-23 11:05:38 +01:00
from typing import Any, Dict
from ..utils.projector import AllData, register_projector_slide
2018-12-23 11:05:38 +01:00
# Important: All functions have to be prune. This means, that thay can only
# access the data, that they get as argument and do not have any
# side effects. They are called from an async context. So they have
# to be fast!
2019-01-06 16:22:33 +01:00
def mediafile_slide(all_data: AllData, element: Dict[str, Any]) -> Dict[str, Any]:
2018-12-23 11:05:38 +01:00
"""
Slide for Mediafile.
"""
return {"error": "TODO"}
def register_projector_slides() -> None:
register_projector_slide("mediafiles/mediafile", mediafile_slide)