Convert document image cache to use file cache manager app. Add setting DOCUMENTS_CACHE_MAXIMUM_SIZE defaults to 500 MB. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
9 lines
193 B
Python
9 lines
193 B
Python
from __future__ import unicode_literals
|
|
|
|
from mayan.apps.common.apps import MayanAppConfig
|
|
|
|
|
|
class FileCachingConfig(MayanAppConfig):
|
|
has_tests = False
|
|
name = 'mayan.apps.file_caching'
|