Fundraising in PDF.
[wolnelektury.git] / src / club / permissions.py
1 # This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
3 #
4 from rest_framework.permissions import BasePermission
5 from .models import Membership
6
7
8 class IsClubMember(BasePermission):
9     def has_permission(self, request, view):
10         return Membership.is_active_for(request.user)