|
|
|
@ -62,7 +62,8 @@ func RepositoryListOfMap(repoMap map[int64]*Repository) RepositoryList {
|
|
|
|
|
return RepositoryList(ValuesRepository(repoMap))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (repos RepositoryList) loadAttributes(ctx context.Context) error {
|
|
|
|
|
// LoadAttributes loads the attributes for the given RepositoryList
|
|
|
|
|
func (repos RepositoryList) LoadAttributes(ctx context.Context) error {
|
|
|
|
|
if len(repos) == 0 {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
@ -107,11 +108,6 @@ func (repos RepositoryList) loadAttributes(ctx context.Context) error {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// LoadAttributes loads the attributes for the given RepositoryList
|
|
|
|
|
func (repos RepositoryList) LoadAttributes() error {
|
|
|
|
|
return repos.loadAttributes(db.DefaultContext)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SearchRepoOptions holds the search options
|
|
|
|
|
type SearchRepoOptions struct {
|
|
|
|
|
db.ListOptions
|
|
|
|
@ -547,7 +543,7 @@ func SearchRepositoryByCondition(ctx context.Context, opts *SearchRepoOptions, c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if loadAttributes {
|
|
|
|
|
if err := repos.loadAttributes(ctx); err != nil {
|
|
|
|
|
if err := repos.LoadAttributes(ctx); err != nil {
|
|
|
|
|
return nil, 0, fmt.Errorf("LoadAttributes: %w", err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|