mirror of
https://github.com/umap-project/umap.git
synced 2025-04-29 20:02:36 +02:00
8 lines
207 B
Python
8 lines
207 B
Python
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)
|