Files
staceybot-template/libs/lib_checks.py
2024-06-05 19:05:10 +02:00

7 lines
162 B
Python

def has_role(user_roles, searched_role):
found = False
for i in user_roles:
if i.name == searched_role:
found = True
return found