From fc0140e5a496d9bc8fc6b858cfad1f9a4709134f Mon Sep 17 00:00:00 2001 From: James Tombleson Date: Fri, 5 Apr 2024 17:49:47 -0700 Subject: [PATCH] this request should have had the full username, and not just name... --- api/domain/requests.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/domain/requests.go b/api/domain/requests.go index 83a0a78..5be5b3b 100644 --- a/api/domain/requests.go +++ b/api/domain/requests.go @@ -5,6 +5,6 @@ type HelloBodyRequest struct { } type UpdateScopesRequest struct { - Username string `json:"name"` + Username string `json:"username"` Scopes []string `json:"scopes" validate:"required"` }