missed the settings definition

This commit is contained in:
Matthias 2021-06-30 23:54:56 +02:00
parent 4fa57aee16
commit 56b23389d3

View File

@ -82,6 +82,13 @@ class InvenTreeSetting(models.Model):
'default': '',
},
'INVENTREE_DEFAULT_CURRENCY': {
'name': _('Default Currency'),
'description': _('Default currency'),
'default': 'USD',
'choices': CURRENCY_CHOICES,
},
'INVENTREE_DOWNLOAD_FROM_URL': {
'name': _('Download from URL'),
'description': _('Allow download of remote images and files from external URL'),