Skip to content
Snippets Groups Projects
Commit 8ad464ae authored by ynerant's avatar ynerant
Browse files

Fix CI

parent 5c9c0bbc
No related branches found
No related tags found
1 merge request!71Memberships
Pipeline #8085 passed with stages
in 3 minutes and 28 seconds
......@@ -10,8 +10,8 @@ from django.db.models import Q, F
from note.models import Note, NoteUser, NoteClub, NoteSpecial
from note_kfet.middlewares import get_current_session
from member.models import Membership, Club
from .decorators import memoize
from .decorators import memoize
from .models import Permission
......@@ -43,7 +43,7 @@ class PermissionBackend(ModelBackend):
rolepermissions__role__membership__date_end__gte=datetime.date.today(),
type=t,
mask__rank__lte=get_current_session().get("permission_mask", 0),
).distinct('club', 'pk')
).distinct('club', 'pk',)
@staticmethod
def permissions(user, model, type):
......
......@@ -53,4 +53,4 @@ def memoize(f):
func.func_name = f.__name__
return func
\ No newline at end of file
return func
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment