this request should have had the full username, and not just name...

This commit is contained in:
James Tombleson 2024-04-05 17:49:47 -07:00
parent d2aa1b99ce
commit fc0140e5a4
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@ type HelloBodyRequest struct {
}
type UpdateScopesRequest struct {
Username string `json:"name"`
Username string `json:"username"`
Scopes []string `json:"scopes" validate:"required"`
}