Skip to content

Commit

Permalink
code review
Browse files Browse the repository at this point in the history
  • Loading branch information
nadavsteindler committed Dec 18, 2024
1 parent a6a031d commit 128270c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/catalog/catalog.go
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,8 @@ func (c *Catalog) DeleteRepositoryMetadata(ctx context.Context, repository strin
}

// ListRepositories list repository information, the bool returned is true when more repositories can be listed.
// In this case, pass the last repository name as 'after' on the next call to ListRepositories
// In this case, pass the last repository name as 'after' on the next call to ListRepositories. Results can be
// filtered by specifying a prefix or, more generally, a searchString.
func (c *Catalog) ListRepositories(ctx context.Context, limit int, prefix, searchString, after string) ([]*Repository, bool, error) {
// normalize limit
if limit < 0 || limit > ListRepositoriesLimitMax {
Expand Down

0 comments on commit 128270c

Please sign in to comment.