mirror of
https://github.com/go-gitea/gitea
synced 2025-07-15 23:17:19 +00:00
fix naming
This commit is contained in:
@@ -704,8 +704,8 @@ func GetMilestoneByIndex(repoId, idx int64) (*Milestone, error) {
|
||||
return m, nil
|
||||
}
|
||||
|
||||
// Milestones returns a list of milestones of given repository and status.
|
||||
func Milestones(repoID int64, page int, isClosed bool) ([]*Milestone, error) {
|
||||
// GetMilestones returns a list of milestones of given repository and status.
|
||||
func GetMilestones(repoID int64, page int, isClosed bool) ([]*Milestone, error) {
|
||||
miles := make([]*Milestone, 0, setting.IssuePagingNum)
|
||||
sess := x.Where("repo_id=? AND is_closed=?", repoID, isClosed)
|
||||
if page > 0 {
|
||||
|
Reference in New Issue
Block a user