Files
mayan-edms/mayan/apps/control_codes/storages.py
Roberto Rosario f9ba08ee59 Add control code preview generation
Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
2019-09-01 14:35:04 -04:00

13 lines
424 B
Python

from __future__ import unicode_literals
from mayan.apps.storage.utils import get_storage_subclass
from .settings import (
setting_control_sheet_code_image_cache_storage,
setting_control_sheet_code_image_storage_arguments
)
storage_controlsheetcodeimagecache = get_storage_subclass(
dotted_path=setting_control_sheet_code_image_cache_storage.value
)(**setting_control_sheet_code_image_storage_arguments.value)