added sync view to sync teamsnap

This commit is contained in:
2021-12-27 08:44:26 -06:00
parent 8fe7d87536
commit 81cd9144ea
2 changed files with 40 additions and 2 deletions

View File

@@ -14,6 +14,7 @@ urlpatterns = [
path('sync_teamsnap_db', views.sync_teamsnapdb_with_teamsnapapi, name="sync with teamsnapapi"),
path('sync_benchcoach_db', views.sync_teamsnapdb_to_benchcoachdb, name="sync benchcoach"),
path('update/<str:object_name>', views.update_teamsnapdb_from_teamsnapapi, name="update"),
path('send/<str:object_name>', views.send_to_benchcoach, name="send")
path('send/<str:object_name>', views.send_to_benchcoach, name="send"),
path('sync/', views.sync, name="sync")
# path('import_teamsnap', views.import_teamsnap, name="import teamsnap"),
]