diff --git a/rowers/templates/rower_exportsettings.html b/rowers/templates/rower_exportsettings.html index 4990ce37..52f9b98d 100644 --- a/rowers/templates/rower_exportsettings.html +++ b/rowers/templates/rower_exportsettings.html @@ -60,6 +60,7 @@ page. Look for the "Rowsandall" app.

{% endif %} +

Garmin Connnect has no manual sync, so connecting your account to your Garmin account will automatically auto-sync workouts from Garmin to Rowsandall (but not in the other direction). If you @@ -67,6 +68,14 @@ to a activity type that is supported by your watch. Not all watches support "Custom" activities, so you may have to set your activity to Run or Ride while rowing.

+{% if rower.stravatoken and rower.stravatoken != '' %} +

+ You are connected to Strava.. Workouts imported from Strava will not be synced + to other platforms and the data will only be visible to you, not your team members or coaches. + We have to respect the terms and conditions of the Strava API, which do not allow us to sync + data to other platforms or to share the data with others. +

+{% endif %}

Strava Auto Import also imports activity changes on Strava to Rowsandall, except when you delete a workout on Strava. If you want Deletions to propagate to Rowsandall, tick the Strava Auto Delete diff --git a/rowers/uploads.py b/rowers/uploads.py index 83846898..82c2dc85 100644 --- a/rowers/uploads.py +++ b/rowers/uploads.py @@ -145,6 +145,8 @@ def do_sync(w, options, quick=False): w.privacy = 'hidden' w.save() record = create_or_update_syncrecord(w.user, w, stravaid=options['stravaid']) + # strava, we shall not sync to other sites -> return + return 1 except KeyError: pass