Jarvis/jarvis/core/user_group_check.py

6 lines
179 B
Python
Raw Normal View History

2023-04-25 17:06:14 +02:00
def user_has_group_trainer(user):
return user.groups.filter(name='Trainer').exists()
def user_has_group_gymnast(user):
return user.groups.filter(name='Gymnast').exists()