add instagen

This commit is contained in:
2022-06-02 15:27:15 -05:00
parent cd503f639c
commit bdefd57260
121 changed files with 362 additions and 25 deletions

View File

@@ -272,3 +272,4 @@ SOCIALACCOUNT_FORMS = {"signup": "benchcoach.users.forms.UserSocialSignupForm"}
# Your stuff...
# ------------------------------------------------------------------------------
INSTALLED_APPS += ["teamsnap", "instagen"]

View File

@@ -64,7 +64,7 @@ INSTALLED_APPS += ["django_extensions"] # noqa F405
# Your stuff...
# ------------------------------------------------------------------------------
INSTALLED_APPS += ["teamsnap"]
ACCOUNT_AUTHENTICATION_METHOD = "email"
ACCOUNT_EMAIL_REQUIRED = True
ACCOUNT_USERNAME_REQUIRED = False

View File

@@ -16,6 +16,7 @@ urlpatterns = [
path("users/", include("benchcoach.users.urls", namespace="users")),
path("accounts/", include("allauth.urls")),
path("", include("teamsnap.urls")),
path("", include("instagen.urls")),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)