mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-13 18:31:10 +01:00
16 lines
725 B
Python
16 lines
725 B
Python
# -*- coding: utf-8 -*-
|
|
from django.contrib.auth.decorators import user_passes_test
|
|
from helpdesk import settings
|
|
|
|
if settings.HELPDESK_CUSTOM_STAFF_FILTER_CALLBACK:
|
|
# apply a custom user validation condition
|
|
is_helpdesk_staff = settings.HELPDESK_CUSTOM_STAFF_FILTER_CALLBACK
|
|
elif settings.HELPDESK_ALLOW_NON_STAFF_TICKET_UPDATE:
|
|
# treat 'normal' users like 'staff'
|
|
is_helpdesk_staff = lambda u: u.is_authenticated() and u.is_active
|
|
else:
|
|
is_helpdesk_staff = lambda u: u.is_authenticated() and u.is_active and u.is_staff
|
|
|
|
helpdesk_staff_member_required = user_passes_test(is_helpdesk_staff)
|
|
helpdesk_superuser_required = user_passes_test(lambda u: u.is_authenticated() and u.is_active and u.is_superuser)
|