Sort the tag before returning the list when calling API

Sort the tag before returning the list when calling API list tag API

Signed-off-by: Wenkai Yin <yinw@vmware.com>
This commit is contained in:
Wenkai Yin 2019-12-05 19:50:45 +08:00
parent 2fb1cc89d9
commit 4043ef8aa9

View File

@ -615,21 +615,24 @@ func (ra *RepositoryAPI) GetTags() {
} }
tags = ts tags = ts
} }
result := []*models.TagResp{}
detail, err := ra.GetBool("detail", true) detail, err := ra.GetBool("detail", true)
if !detail && err == nil { if !detail && err == nil {
ra.Data["json"] = simpleTags(tags) result = simpleTags(tags)
ra.ServeJSON() } else {
return result = assembleTagsInParallel(
client,
project.ProjectID,
repoName,
tags,
ra.SecurityCtx.GetUsername(),
)
} }
// sort by tag name
ra.Data["json"] = assembleTagsInParallel( sort.Slice(result, func(i, j int) bool {
client, return result[i].Name < result[j].Name
project.ProjectID, })
repoName, ra.Data["json"] = result
tags,
ra.SecurityCtx.GetUsername(),
)
ra.ServeJSON() ra.ServeJSON()
} }