mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-13 10:21:05 +01:00
fix(demo): Update demo's INSTALLED_APPS to avoid it crashing after pinax-team library was introduced #820
This commit is contained in:
parent
a4eb80c141
commit
34eb793f68
@ -38,7 +38,12 @@ INSTALLED_APPS = [
|
|||||||
'django.contrib.sites',
|
'django.contrib.sites',
|
||||||
'django.contrib.humanize',
|
'django.contrib.humanize',
|
||||||
'bootstrap4form',
|
'bootstrap4form',
|
||||||
'helpdesk'
|
|
||||||
|
'account', # Required by pinax-teams
|
||||||
|
'pinax.invitations', # required by pinax-teams
|
||||||
|
'pinax.teams', # team support
|
||||||
|
'helpdesk', # This is us!
|
||||||
|
'reversion', # required by pinax-teams
|
||||||
]
|
]
|
||||||
|
|
||||||
MIDDLEWARE = [
|
MIDDLEWARE = [
|
||||||
|
@ -12,4 +12,6 @@ pytz
|
|||||||
six
|
six
|
||||||
djangorestframework
|
djangorestframework
|
||||||
django-model-utils
|
django-model-utils
|
||||||
pinax-teams @ git+https://github.com/auto-mat/pinax-teams.git@slugify#egg=pinax-teams
|
|
||||||
|
# specific commit because the current release has no required library upgrade
|
||||||
|
pinax-teams @ git+https://github.com/pinax/pinax-teams.git@dd75e1c#egg=pinax-teams
|
||||||
|
Loading…
Reference in New Issue
Block a user