umap/umap/managers.py

11 lines
243 B
Python
Raw Normal View History

2018-05-18 14:40:38 -05:00
from django.db.models import Manager
class PublicManager(Manager):
def get_queryset(self):
2023-11-23 11:04:23 -06:00
return (
super(PublicManager, self)
.get_queryset()
.filter(share_status=self.model.PUBLIC)
)