From f70b9b2b526950eb362e1874d4d80af646d48c7b Mon Sep 17 00:00:00 2001 From: Damien Ostler Date: Sat, 10 Feb 2024 23:00:03 -0500 Subject: [PATCH] fix: removed uneeded input on the request seller profile endpoint --- src/comissions.app.api/Controllers/SellerProfileController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comissions.app.api/Controllers/SellerProfileController.cs b/src/comissions.app.api/Controllers/SellerProfileController.cs index fa7f8c5..1e0c2aa 100644 --- a/src/comissions.app.api/Controllers/SellerProfileController.cs +++ b/src/comissions.app.api/Controllers/SellerProfileController.cs @@ -68,7 +68,7 @@ public class SellerProfileController : Controller [HttpPost] [Authorize("write:seller-profile")] - public async Task RequestSellerProfile(SellerProfileModel model) + public async Task RequestSellerProfile() { var userId = User.GetUserId();