mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-25 13:23:42 +00:00
8 lines
195 B
Python
8 lines
195 B
Python
from django.db import models
|
|
|
|
|
|
class GroupQuerySet(models.QuerySet):
|
|
def of_user(self, user):
|
|
return self.filter(
|
|
users__exact=user
|
|
).order_by('groupuser__order')
|