Jake Vanderwerf
2026-02-07 8b82035f3f8be1462a7125ad7eafb990ca17fa94
inc/rest/routes/LoginRoutes.php
@@ -39,7 +39,7 @@
      Route::for('auth/status')
         ->get([$this, 'getAuthStatus'])
         ->auth('public')
         ->rateLimit(60, 60);
         ->rateLimit();
      // Standard login
      Route::for('auth/login')
@@ -105,6 +105,8 @@
         ->post([$this, 'handleLogout'])
         ->auth('logged_in')
         ->rateLimit(10, 60);
      error_log('=================== LOGIN ROUTES REGISTERED ===================');
   }
   /**