Skip to content

Commit

Permalink
change name
Browse files Browse the repository at this point in the history
  • Loading branch information
nadavsteindler committed Dec 17, 2024
1 parent d2166f2 commit 553a56e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions api/swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ components:
schema:
type: string

PaginationSearchString:
SearchString:
in: query
name: search
description: string for searching relevant entries
Expand Down Expand Up @@ -2915,7 +2915,7 @@ paths:
- $ref: "#/components/parameters/PaginationPrefix"
- $ref: "#/components/parameters/PaginationAfter"
- $ref: "#/components/parameters/PaginationAmount"
- $ref: "#/components/parameters/PaginationSearchString"
- $ref: "#/components/parameters/SearchString"
operationId: listRepositories
summary: list repositories
responses:
Expand Down
2 changes: 1 addition & 1 deletion clients/java/api/openapi.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/assets/js/swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ components:
schema:
type: string

PaginationSearchString:
SearchString:
in: query
name: search
description: string for searching relevant entries
Expand Down Expand Up @@ -2915,7 +2915,7 @@ paths:
- $ref: "#/components/parameters/PaginationPrefix"
- $ref: "#/components/parameters/PaginationAfter"
- $ref: "#/components/parameters/PaginationAmount"
- $ref: "#/components/parameters/PaginationSearchString"
- $ref: "#/components/parameters/SearchString"
operationId: listRepositories
summary: list repositories
responses:
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -5470,7 +5470,7 @@ func paginationDelimiter(v *apigen.PaginationDelimiter) string {
return string(*v)
}

func paginationSearch(v *apigen.PaginationSearchString) string {
func paginationSearch(v *apigen.SearchString) string {
if v == nil {
return ""
}
Expand Down

0 comments on commit 553a56e

Please sign in to comment.