From 6d251236da2dbbce3d992e455faa5770ad332699 Mon Sep 17 00:00:00 2001 From: Colton Hurst Date: Mon, 27 Feb 2023 10:14:50 -0500 Subject: [PATCH] SM-528: Fix SM Import / Export Error Messaging (#2734) * SM-528: Update SM Import & Export errors when non-admin * SM-528: Switch to not found exception --- .../Controllers/SecretsManagerPortingController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Api/SecretsManager/Controllers/SecretsManagerPortingController.cs b/src/Api/SecretsManager/Controllers/SecretsManagerPortingController.cs index d1e75a328b..d54ec3624d 100644 --- a/src/Api/SecretsManager/Controllers/SecretsManagerPortingController.cs +++ b/src/Api/SecretsManager/Controllers/SecretsManagerPortingController.cs @@ -33,7 +33,7 @@ public class SecretsManagerPortingController : Controller { if (!await _currentContext.OrganizationAdmin(organizationId)) { - throw new UnauthorizedAccessException(); + throw new NotFoundException(); } var userId = _userService.GetProperUserId(User).Value; @@ -53,7 +53,7 @@ public class SecretsManagerPortingController : Controller { if (!await _currentContext.OrganizationAdmin(organizationId)) { - throw new UnauthorizedAccessException(); + throw new NotFoundException(); } if (importRequest.Projects?.Count() > 1000 || importRequest.Secrets?.Count() > 6000)