- Add ALTCHA service with challenge generation and verification - Update auth and admin handlers to use ALTCHA tokens - Replace Turnstile widget with ALTCHA widget in Flutter app - Update admin frontend to use ALTCHA token - Add ALTCHA challenge endpoints for both auth and admin - Maintain development bypass for testing - Remove Turnstile dependencies from authentication flow
6 lines
184 B
SQL
6 lines
184 B
SQL
SELECT u.email, u.status, p.role, p.handle
|
|
FROM users u
|
|
LEFT JOIN profiles p ON u.id = p.id
|
|
WHERE u.email IN ('patrick@mp.ls', 'admin@mp.ls', 'admin@sojorn.net')
|
|
ORDER BY u.email;
|