aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/repo_ref.go
blob: 54e424bb832abcb8cf0cd23253096a4d5f20ce48 (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2018 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package git

// GetRefs returns all references of the repository.
func (repo *Repository) GetRefs() ([]*Reference, error) {
	return repo.GetRefsFiltered("")
}