fix(demo): Update demo's INSTALLED_APPS to avoid it crashing after pinax-team library was introduced #820

This commit is contained in:
Arkadiy Korotaev 2020-07-20 16:41:22 +02:00
parent a4eb80c141
commit 34eb793f68
No known key found for this signature in database
GPG Key ID: 4BD092DD84540FAB
2 changed files with 9 additions and 2 deletions

View File

@ -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 = [

View File

@ -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