Files
mayan-edms/mayan/apps/document_states/storages.py
2019-07-11 01:56:06 -04:00

13 lines
380 B
Python

from __future__ import unicode_literals
from mayan.apps.storage.utils import get_storage_subclass
from .settings import (
setting_workflowimagecache_storage,
setting_workflowimagecache_storage_arguments
)
storage_workflowimagecache = get_storage_subclass(
dotted_path=setting_workflowimagecache_storage.value
)(**setting_workflowimagecache_storage_arguments.value)