mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 08:28:52 +00:00
Fix incorrect decode function in GetAllQueries (#284)
This commit is contained in:
parent
85a8e92b96
commit
d0dcfefd25
1 changed files with 1 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ func makeKolideKitHandlers(ctx context.Context, e KolideEndpoints, opts []kithtt
|
|||
ListInvites: newServer(e.ListInvites, decodeNoParamsRequest),
|
||||
DeleteInvite: newServer(e.DeleteInvite, decodeDeleteInviteRequest),
|
||||
GetQuery: newServer(e.GetQuery, decodeGetQueryRequest),
|
||||
GetAllQueries: newServer(e.GetAllQueries, decodeGetQueryRequest),
|
||||
GetAllQueries: newServer(e.GetAllQueries, decodeNoParamsRequest),
|
||||
CreateQuery: newServer(e.CreateQuery, decodeCreateQueryRequest),
|
||||
ModifyQuery: newServer(e.ModifyQuery, decodeModifyQueryRequest),
|
||||
DeleteQuery: newServer(e.DeleteQuery, decodeDeleteQueryRequest),
|
||||
|
|
|
|||
Loading…
Reference in a new issue