mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
8de0b0a3f0
* Fixes #2738 - /git/tags API * proper URLs * Adds function comments * Updates swagger * Removes newline from tag message * Removes trailing newline from commit message * Adds integration test * Removed debugging * Adds tests * Fixes bug where multiple tags of same commit show wrong tag name * Fix formatting * Removes unused varaible * Fix to annotated tag function names and response * Update modules/git/repo_tag.go Co-Authored-By: Lauris BH <lauris@nix.lv> * Uses TagPrefix * Changes per review, better error handling for getting tag and commit IDs * Fix to getting commit ID * Fix to getting commit ID * Fix to getting commit ID * Fix to getting commit ID
25 lines
568 B
Go
25 lines
568 B
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package models
|
|
|
|
import (
|
|
"code.gitea.io/gitea/modules/git"
|
|
)
|
|
|
|
// GetTagsByPath returns repo tags by its path
|
|
func GetTagsByPath(path string) ([]*git.Tag, error) {
|
|
gitRepo, err := git.OpenRepository(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return gitRepo.GetTagInfos()
|
|
}
|
|
|
|
// GetTags return repo's tags
|
|
func (repo *Repository) GetTags() ([]*git.Tag, error) {
|
|
return GetTagsByPath(repo.RepoPath())
|
|
}
|