mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-16 21:12:13 +00:00
6 lines
209 B
Python
6 lines
209 B
Python
from PyRIGS.decorators import user_passes_test_with_403
|
|
|
|
|
|
def is_supervisor(login_url=None, oembed_view=None):
|
|
return user_passes_test_with_403(lambda u: (hasattr(u, 'is_supervisor') and u.is_supervisor))
|