Fuzzy matching repository name in GET repositories API

This commit is contained in:
Wenkai Yin 2018-03-22 13:38:26 +08:00
parent 8b739dcbbb
commit c6e65d2ded

View File

@ -156,8 +156,8 @@ func repositoryQueryConditions(query ...*models.RepositoryQuery) (string, []inte
sql += `where 1=1 ` sql += `where 1=1 `
if len(q.Name) > 0 { if len(q.Name) > 0 {
sql += `and r.name = ? ` sql += `and r.name like ? `
params = append(params, q.Name) params = append(params, "%"+Escape(q.Name)+"%")
} }
if len(q.ProjectIDs) > 0 { if len(q.ProjectIDs) > 0 {