Replace STORAGE_BACKEND
and STORAGE_CONFIG
configuration parameters with Django's STORAGES
#18423
Labels
complexity: low
Requires minimal effort to implement
status: accepted
This issue has been accepted for implementation
type: feature
Introduction of new functionality to the application
Uh oh!
There was an error while loading. Please reload this page.
NetBox version
v4.2.1
Feature type
Change to existing functionality
Triage priority
N/A
Proposed functionality
NetBox currently exposes two configuration parameters for configuring file storage:
STORAGE_BACKEND
- Sets the storage backend (e.g.django-storages
)STORAGE_CONFIG
- A dictionary of backend-specific configuration parametersWe can replace these by instead exposing Django's
STORAGES
setting directly.Use case
Django's native
STORAGE_BACKEND
setting was removed in v5.1 and superseded bySTORAGES
. There is no longer a need to handle the backend selection and configuration via separate configuration parameters.Database changes
N/A
External dependencies
None
The text was updated successfully, but these errors were encountered: