implement lineup send to gamechanger

This commit is contained in:
2022-06-08 14:08:33 -05:00
parent 50c9b70546
commit f788fb9932
21 changed files with 409 additions and 82 deletions

View File

@@ -1,16 +1,10 @@
from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
from django.urls import path
from .views import (
PreferencesFormView,
AccountFormView,
roster_view,
roster_save
)
from .views import AccountFormView, PreferencesFormView, lineup_submit, roster_import
urlpatterns = [
path("account/", AccountFormView.as_view(), name="gamechanger_account"),
path("preferences/", PreferencesFormView.as_view(), name="gamechanger_preferences"),
path("roster/", roster_view, name="gamechanger_roster"),
path("roster/save", roster_save, name="gamechanger_save"),
path("roster/import", roster_import, name="gamechanger_import_roster"),
path("lineup/submit", lineup_submit, name="gamechanger_lineup_submit"),
]