Skip to content

Commit

Permalink
fix: incorrect swagger spec for filter parameter (ory#3684)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr authored Jan 8, 2024
1 parent c251cb2 commit 2c1470a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions identity/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,12 @@ type listIdentitiesResponse struct {
type listIdentitiesParameters struct {
migrationpagination.RequestParameters

// IdsFilter is list of ids used to filter identities.
// List of ids used to filter identities.
// If this list is empty, then no filter will be applied.
//
// required: false
// in: query
IdsFilter []string `json:"ids_filter"`
IdsFilter []string `json:"ids"`

// CredentialsIdentifier is the identifier (username, email) of the credentials to look up using exact match.
// Only one of CredentialsIdentifier and CredentialsIdentifierSimilar can be used.
Expand Down

0 comments on commit 2c1470a

Please sign in to comment.