1a709a59a9
* Changed wording: element is one element on the projector. A slide is a functoin to render one element * Use AllData as first argument all the time * Render username on server * Add exceptions for erros on projector * Fix motion recommendation * Only show state extension, if it is allowed by the state * Add motion_change_recommendations to motion full_data
21 lines
596 B
Python
21 lines
596 B
Python
from typing import Any, Dict
|
|
|
|
from ..utils.projector import AllData, register_projector_slide
|
|
|
|
|
|
# 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!
|
|
|
|
|
|
def topic_slide(all_data: AllData, element: Dict[str, Any]) -> Dict[str, Any]:
|
|
"""
|
|
Topic slide.
|
|
"""
|
|
return {"error": "TODO"}
|
|
|
|
|
|
def register_projector_slides() -> None:
|
|
register_projector_slide("topics/topic", topic_slide)
|