OpenSlides/openslides/assignments/signals.py

16 lines
593 B
Python
Raw Normal View History

2017-02-21 09:34:24 +01:00
from django.apps import apps
def get_permission_change_data(sender, permissions=None, **kwargs):
"""
Yields all necessary collections if 'assignments.can_see' permission changes.
2017-02-21 09:34:24 +01:00
"""
2019-01-06 16:22:33 +01:00
assignments_app = apps.get_app_config(app_label="assignments")
2017-02-21 09:34:24 +01:00
for permission in permissions:
# There could be only one 'assignment.can_see' and then we want to return data.
2019-01-06 16:22:33 +01:00
if (
permission.content_type.app_label == assignments_app.label
and permission.codename == "can_see"
):
yield from assignments_app.get_startup_elements()