mirror of https://github.com/go-gitea/gitea.git
revert the removed method to fix tmpl break on graph page (#25005)
Fix #24996 Caused by #24634
This commit is contained in:
parent
ee99cf6313
commit
faae819f5d
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue