add teamsnap preferences page.

This commit is contained in:
2022-06-02 08:52:38 -05:00
parent e1d47f345f
commit db020ee153
10 changed files with 171 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
from django.urls import path
from .provider import TeamsnapProvider
from .views import PreferencesFormView
urlpatterns = default_urlpatterns(TeamsnapProvider)
urlpatterns += [path("preferences", PreferencesFormView.as_view(), name="preferences")]