mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-11 13:30:17 +02:00
6 lines
163 B
Python
6 lines
163 B
Python
from groupmanagement.managers import GroupManager
|
|
|
|
|
|
def can_manage_groups(request):
|
|
return {'can_manage_groups': GroupManager.can_manage_groups(request.user)}
|