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