Move document type's OCR settings from the documents app to the OCR app

This commit is contained in:
Roberto Rosario
2015-06-24 01:52:33 -04:00
parent 83ed62b210
commit 72b91b79ac
13 changed files with 110 additions and 19 deletions
-3
View File
@@ -54,9 +54,6 @@ class DocumentType(models.Model):
"""
name = models.CharField(max_length=32, verbose_name=_('Name'), unique=True)
# TODO: find a way to move this to the ocr app
ocr = models.BooleanField(default=True, verbose_name=_('Automatically queue newly created documents for OCR.'))
objects = DocumentTypeManager()
def __str__(self):