fix: user grant by id (#6242)

(cherry picked from commit cd5e176e30)
This commit is contained in:
Livio Spring
2023-07-21 13:04:55 +02:00
parent e08b8dcb13
commit 1b44e9ad76
2 changed files with 5 additions and 1 deletions

View File

@@ -11,7 +11,7 @@ import (
)
func (s *Server) GetUserGrantByID(ctx context.Context, req *mgmt_pb.GetUserGrantByIDRequest) (*mgmt_pb.GetUserGrantByIDResponse, error) {
idQuery, err := query.NewUserGrantGrantIDSearchQuery(req.GrantId)
idQuery, err := query.NewUserGrantIDSearchQuery(req.GrantId)
if err != nil {
return nil, err
}