mirror of
https://codeberg.org/davrot/forgejo.git
synced 2025-05-20 14:00:04 +02:00
fix naming
This commit is contained in:
parent
9311a9858a
commit
ce4dcf1e83
2 changed files with 9 additions and 9 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue