mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-18 14:47:38 +01:00
Fuzzy matching repository name in GET repositories API
This commit is contained in:
parent
8b739dcbbb
commit
c6e65d2ded
@ -156,8 +156,8 @@ func repositoryQueryConditions(query ...*models.RepositoryQuery) (string, []inte
|
||||
sql += `where 1=1 `
|
||||
|
||||
if len(q.Name) > 0 {
|
||||
sql += `and r.name = ? `
|
||||
params = append(params, q.Name)
|
||||
sql += `and r.name like ? `
|
||||
params = append(params, "%"+Escape(q.Name)+"%")
|
||||
}
|
||||
|
||||
if len(q.ProjectIDs) > 0 {
|
||||
|
Loading…
Reference in New Issue
Block a user