Files
mayan-edms/mayan/apps/control_codes/managers.py
Roberto Rosario 9448b148e9 Improve tests, update migrations
Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
2019-09-05 22:18:59 -04:00

9 lines
196 B
Python

from __future__ import unicode_literals
from django.db import models
class ControlSheetCodeBusinessLogicManager(models.Manager):
def enabled(self):
return self.filter(enabled=True)