umap/umap/managers.py

9 lines
207 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):
return super(PublicManager, self).get_queryset().filter(
share_status=self.model.PUBLIC)