From dce8332561fc529ecf8b1af158a4ca7abf4cea7a Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 9 Sep 2020 15:44:29 -0400 Subject: [PATCH] remove test exception page --- bitwarden_license/src/Sso/Controllers/HomeController.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/bitwarden_license/src/Sso/Controllers/HomeController.cs b/bitwarden_license/src/Sso/Controllers/HomeController.cs index 3f70e2f44..7536a1ca4 100644 --- a/bitwarden_license/src/Sso/Controllers/HomeController.cs +++ b/bitwarden_license/src/Sso/Controllers/HomeController.cs @@ -26,13 +26,6 @@ namespace Bit.Sso.Controllers return DateTime.UtcNow; } - [HttpGet("~/exception")] - [AllowAnonymous] - public DateTime GetException() - { - throw new Exception("this is a test exception"); - } - [Route("~/Error")] [Route("~/Home/Error")] [AllowAnonymous]