mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
The registry default settings needs to be an empty dict, not list.
This commit is contained in:
parent
4e8f490714
commit
97c45e702f
1 changed files with 2 additions and 2 deletions
|
|
@ -7,8 +7,8 @@ DEFAULT_SETTINGS = {
|
|||
'ALLOW_SLUG_CHANGE': False,
|
||||
'CACHE_VIEW_LENGTH': 0,
|
||||
'RELATION_MODELS': [],
|
||||
'M2M_REGISTRY': [],
|
||||
'FK_REGISTRY': [],
|
||||
'M2M_REGISTRY': {},
|
||||
'FK_REGISTRY': {},
|
||||
'THUMBNAIL_UPLOAD_PATH': 'uploads/categories/thumbnails',
|
||||
'THUMBNAIL_STORAGE': settings.DEFAULT_FILE_STORAGE,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue