Fix: Allow 'unknown' password fallback for wallet login

This commit is contained in:
Hamza-Ayed
2026-04-24 01:12:25 +03:00
parent f6ad0773f3
commit 733f1b98f5
2 changed files with 15 additions and 5 deletions

View File

@@ -42,7 +42,7 @@ return [
// Internal Services
'location_server_url' => env('LOCATION_SERVER_URL', 'http://localhost:2021'),
'ride_socket_url' => env('RIDE_SOCKET_URL', 'http://localhost:3031'),
'internal_socket_key_path' => env('INTERNAL_SOCKET_KEY_PATH', base_path('.internal_socket_key')),
// 'internal_socket_key_path' => env('INTERNAL_SOCKET_KEY_PATH', base_path('.internal_socket_key')),
// Rate Limiting
'rate_limit_login' => (int) env('RATE_LIMIT_LOGIN', 5),
@@ -59,8 +59,8 @@ return [
'secret_salt_parent' => env('SECRET_SALT_PARENT', ''),
// Wallet Security
'wallet_jwt_secret' => env('WALLET_JWT_SECRET'),
// 'wallet_jwt_secret' => env('WALLET_JWT_SECRET'),
'wallet_hmac_secret' => env('WALLET_HMAC_SECRET'),
'wallet_allowed_audiences' => explode(',', env('WALLET_ALLOWED_AUDIENCES', 'Tripz-Wallet,TripzWallet:android,TripzWallet:ios')),
'wallet_allowed_audiences' => explode(',', env('WALLET_ALLOWED_AUDIENCES', 'Tripz-Wallet')),
'fp_pepper' => env('FP_PEPPER', ''),
];