adding gamechanger, in progress

This commit is contained in:
2022-06-07 16:55:02 -05:00
parent 42d5c452e7
commit 82e77b9e6f
19 changed files with 337 additions and 28 deletions

View File

@@ -272,7 +272,7 @@ SOCIALACCOUNT_FORMS = {"signup": "benchcoach.users.forms.UserSocialSignupForm"}
# Your stuff...
# ------------------------------------------------------------------------------
INSTALLED_APPS += ["teamsnap", "instagen"]
INSTALLED_APPS += ["teamsnap", "instagen","gamechanger"]
SOCIALACCOUNT_PROVIDERS = {
'teamsnap': {
'SCOPE': ["read", "write"]

View File

@@ -17,6 +17,7 @@ urlpatterns = [
path("accounts/", include("allauth.urls")),
path("", include("teamsnap.urls")),
path("", include("instagen.urls")),
path("gc/", include("gamechanger.urls"))
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)