Skip to content

Commit

Permalink
Disable passing userContext in user get API
Browse files Browse the repository at this point in the history
  • Loading branch information
deepjyoti30-st committed Sep 25, 2024
1 parent ae70651 commit cfe3b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipe/dashboard/api/usersGet.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func UsersGet(apiImplementation dashboardmodels.APIInterface, tenantId string, o
User map[string]interface{} `json:"user"`
}) {
defer processingGroup.Done()
userMetadataResponse, err := usermetadata.GetUserMetadata(userObj.User["id"].(string), userContext)
userMetadataResponse, err := usermetadata.GetUserMetadata(userObj.User["id"].(string))
<-sem
if err != nil {
errInBackground = err
Expand Down

0 comments on commit cfe3b0d

Please sign in to comment.