13 lines
557 B
Python
13 lines
557 B
Python
from django.apps import apps
|
|
|
|
|
|
def get_permission_change_data(sender, permissions=None, **kwargs):
|
|
"""
|
|
Yields all necessary collections if 'assignments.can_see' permission changes.
|
|
"""
|
|
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.
|
|
if permission.content_type.app_label == assignments_app.label and permission.codename == 'can_see':
|
|
yield from assignments_app.get_startup_elements()
|