Add debug output to verify endpoint call

Shows user_id and verification code before making API call
to help troubleshoot 'User ID is required' errors.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-01-24 23:26:57 +01:00
parent d2cc0a32c8
commit b9e86c8fae

View File

@@ -371,6 +371,8 @@ else
echo ""
echo "🔐 Verifying email..."
echo " User ID: $USER_ID"
echo " Code: $VERIFY_CODE"
# Verify email (public endpoint - no API key needed)
VERIFY_RESPONSE=$(curl -s -X POST "${SAAC_API}/users/verify" \
@@ -431,6 +433,8 @@ if [ "$VERIFIED" != "true" ]; then
echo ""
echo "🔐 Verifying email..."
echo " User ID: $USER_ID"
echo " Code: $VERIFY_CODE"
# Verify email (public endpoint - no API key needed)
VERIFY_RESPONSE=$(curl -s -X POST "${SAAC_API}/users/verify" \