mirror of
https://github.com/goharbor/harbor.git
synced 2025-03-02 10:41:59 +01:00
Update the method called by registry handler
Use ListTags instead in the registry tag listing handler Signed-off-by: Wenkai Yin <yinw@vmware.com>
This commit is contained in:
parent
fa41168e8e
commit
c1746cc675
@ -80,7 +80,7 @@ func (t *tagHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
||||
}
|
||||
|
||||
// get tags ...
|
||||
total, tags, err := t.artCtl.Tags(req.Context(), &q.Query{
|
||||
total, tags, err := t.artCtl.ListTags(req.Context(), &q.Query{
|
||||
Keywords: map[string]interface{}{
|
||||
"RepositoryID": repository.RepositoryID,
|
||||
}}, nil)
|
||||
|
@ -69,8 +69,8 @@ func (f *FakeController) Delete(ctx context.Context, id int64) (err error) {
|
||||
return args.Error(0)
|
||||
}
|
||||
|
||||
// Tags ...
|
||||
func (f *FakeController) Tags(ctx context.Context, query *q.Query, option *artifact.TagOption) (int64, []*artifact.Tag, error) {
|
||||
// ListTags ...
|
||||
func (f *FakeController) ListTags(ctx context.Context, query *q.Query, option *artifact.TagOption) (int64, []*artifact.Tag, error) {
|
||||
args := f.Called()
|
||||
var tags []*artifact.Tag
|
||||
if args.Get(1) != nil {
|
||||
@ -79,6 +79,12 @@ func (f *FakeController) Tags(ctx context.Context, query *q.Query, option *artif
|
||||
return int64(args.Int(0)), tags, args.Error(2)
|
||||
}
|
||||
|
||||
// CreateTag ...
|
||||
func (f *FakeController) CreateTag(ctx context.Context, tag *artifact.Tag) (int64, error) {
|
||||
args := f.Called()
|
||||
return int64(args.Int(0)), args.Error(1)
|
||||
}
|
||||
|
||||
// DeleteTag ...
|
||||
func (f *FakeController) DeleteTag(ctx context.Context, tagID int64) (err error) {
|
||||
args := f.Called()
|
||||
|
Loading…
Reference in New Issue
Block a user