Update the default values of the settings which pass arguments to backends to be valid Python values and not YAML strings. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
26 lines
816 B
Python
26 lines
816 B
Python
from __future__ import unicode_literals
|
|
|
|
import os
|
|
|
|
from django.conf import settings
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from smart_settings import Namespace
|
|
|
|
namespace = Namespace(name='signatures', label=_('Document signatures'))
|
|
setting_storage_backend = namespace.add_setting(
|
|
default='django.core.files.storage.FileSystemStorage',
|
|
global_name='SIGNATURES_STORAGE_BACKEND', help_text=_(
|
|
'Path to the Storage subclass to use when storing detached '
|
|
'signatures.'
|
|
)
|
|
)
|
|
setting_storage_backend_arguments = namespace.add_setting(
|
|
global_name='SIGNATURES_STORAGE_BACKEND_ARGUMENTS',
|
|
default={
|
|
'location': os.path.join(settings.MEDIA_ROOT, 'document_signatures')
|
|
}, help_text=_(
|
|
'Arguments to pass to the SIGNATURE_STORAGE_BACKEND. '
|
|
)
|
|
)
|