Extract the new smart file caching code from the common app and convert it into its own new app called file_caching. Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
9 lines
188 B
Python
9 lines
188 B
Python
from __future__ import unicode_literals
|
|
|
|
from mayan.apps.common import MayanAppConfig
|
|
|
|
|
|
class FileCachingConfig(MayanAppConfig):
|
|
has_tests = False
|
|
name = 'mayan.apps.file_caching'
|