Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions go/apps/api/routes/v2_apis_list_keys/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,10 @@ func (h *Handler) Handle(ctx context.Context, s *zen.Session) error {
ctx,
h.DB.RO(),
db.ListLiveKeysByKeyAuthIDParams{
KeyAuthID: api.KeyAuthID.String,
WorkspaceID: auth.AuthorizedWorkspaceID,
IDCursor: cursor,
Identity: identityFilter,
Limit: int32(limit + 1), // nolint:gosec
KeyAuthID: api.KeyAuthID.String,
IDCursor: cursor,
Identity: identityFilter,
Limit: int32(limit + 1), // nolint:gosec
},
)
if err != nil {
Expand Down
Loading