forked from DGNum/gestioCOF
9 lines
217 B
Python
9 lines
217 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.contrib.auth.decorators import user_passes_test
|
|
|
|
|
|
def kfet_is_team(user):
|
|
return user.has_perm('kfet.is_team')
|
|
|
|
teamkfet_required = user_passes_test(lambda u: kfet_is_team(u))
|