mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 07:53:19 +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.humanize',
|
||||
'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 = [
|
||||
|
@ -12,4 +12,6 @@ pytz
|
||||
six
|
||||
djangorestframework
|
||||
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