1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-07-23 16:14:17 -04:00

revert the removed method to fix tmpl break on graph page (#25005)

Fix #24996 
Caused by #24634
This commit is contained in:
Lunny Xiao 2023-05-30 21:36:58 +08:00 committed by GitHub
parent ee99cf6313
commit faae819f5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,6 +53,11 @@ func (ref *Reference) Commit() (*Commit, error) {
return ref.repo.getCommit(ref.Object)
}
// ShortName returns the short name of the reference
func (ref *Reference) ShortName() string {
return RefName(ref.Name).ShortName()
}
// RefGroup returns the group type of the reference
func (ref *Reference) RefGroup() string {
return RefName(ref.Name).RefGroup()