diff --git a/src/backend/InvenTree/InvenTree/settings.py b/src/backend/InvenTree/InvenTree/settings.py index 17c60cea606f..c8c4df2dfe54 100644 --- a/src/backend/InvenTree/InvenTree/settings.py +++ b/src/backend/InvenTree/InvenTree/settings.py @@ -171,7 +171,7 @@ # The filesystem location for served static files STATIC_ROOT = config.get_static_dir() -# The filesystem location for uploaded meadia files +# The filesystem location for uploaded media files MEDIA_ROOT = config.get_media_dir() # Needed for the parts importer, directly impacts the maximum parts that can be uploaded @@ -1290,7 +1290,7 @@ if ACCOUNT_DEFAULT_HTTP_PROTOCOL is None: if SITE_URL and SITE_URL.startswith('https://'): - # auto-detect HTTPS prtoocol + # auto-detect HTTPS protocol ACCOUNT_DEFAULT_HTTP_PROTOCOL = 'https' else: # default to http @@ -1361,7 +1361,7 @@ } } -# Ignore these error typeps for in-database error logging +# Ignore these error types for in-database error logging IGNORED_ERRORS = [Http404, django.core.exceptions.PermissionDenied] # Maintenance mode @@ -1420,7 +1420,7 @@ SESAME_MAX_AGE = 300 LOGIN_REDIRECT_URL = '/api/auth/login-redirect/' -# Configuratino for API schema generation +# Configuration for API schema generation SPECTACULAR_SETTINGS = { 'TITLE': 'InvenTree API', 'DESCRIPTION': 'API for InvenTree - the intuitive open source inventory management system',