Routen-Validierung: >15 km/h Ø zählt nicht für Stats/Trophäen, SW by-v331

This commit is contained in:
rene 2026-04-24 09:46:15 +02:00
parent b5e4eab84d
commit 7ac421fcf9
7 changed files with 40 additions and 16 deletions

View file

@ -13,7 +13,7 @@ _STATS_SQL = """
+ COUNT(DISTINCT p.id) * 5
+ COUNT(DISTINCT r.id) * 10 AS punkte
FROM users u
LEFT JOIN routes r ON r.user_id = u.id
LEFT JOIN routes r ON r.user_id = u.id AND r.is_valid = 1
LEFT JOIN user_map_pois p ON p.user_id = u.id
GROUP BY u.id
"""