Scrum4Me/lib/user-agent.ts
Madhura68 13ab53ab8d feat(ST-1135): UA-redirect bij login — phone naar /m/* (T-322/T-323/T-324)
- lib/user-agent.ts (nieuw): isPhoneUA() — Mobi-substring heuristiek
  (telefoons hebben Mobi, tablets/desktop niet)
- actions/auth.ts loginAction: leest user-agent header na session.save();
  phone-UA + actief product → /m/products/[id]/solo, zonder → /m/settings;
  tablet/desktop/null-UA → /dashboard (ongewijzigd)
- Tests: 7 helper-cases + 6 loginAction-paden incl. demo-user

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-04 10:09:09 +02:00

8 lines
379 B
TypeScript

// PBI-11 / ST-1135: detecteert telefoon-UA's voor login-redirect.
// Heuristiek: 'Mobi' in de UA-string. Zit in Android Chrome en iPhone Safari
// Mobile, NIET in iPad of Android-tablet — exact wat we willen voor de
// `/m/*`-mobile-shell (alleen telefoons, geen tablets).
export function isPhoneUA(ua: string | null): boolean {
return ua !== null && ua.includes('Mobi')
}