diff --git a/Server/Server/Controllers/AdminController.cs b/Server/Server/Controllers/AdminController.cs index eb67033..ed46e99 100644 --- a/Server/Server/Controllers/AdminController.cs +++ b/Server/Server/Controllers/AdminController.cs @@ -22,12 +22,6 @@ public class AdminController : ControllerBase _tokenService = tokenService; _questionManagementService = questionManagementService; } - - [HttpGet("test-exception")] - public IActionResult TestException() - { - throw new Exception("This is a test exception"); - } [HttpPost("login")] public ActionResult Login([FromBody] AdminLoginRequest request)