From 9fd517009210b1ed7363560950ee7e3d49c73772 Mon Sep 17 00:00:00 2001 From: Michael VanOverbeek Date: Sun, 31 Oct 2021 13:32:58 -0400 Subject: [PATCH] Apply suggested change for /promotions - remove async qualifier --- ProjectLighthouse/Controllers/StoreController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectLighthouse/Controllers/StoreController.cs b/ProjectLighthouse/Controllers/StoreController.cs index f3977a7a..1fe7862b 100644 --- a/ProjectLighthouse/Controllers/StoreController.cs +++ b/ProjectLighthouse/Controllers/StoreController.cs @@ -9,7 +9,7 @@ namespace LBPUnion.ProjectLighthouse.Controllers public class StoreController : Controller { [HttpGet("promotions")] - public async Task Promotions() + public IActionResult Promotions() { return Ok(); }