mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:49:52 +01:00
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
1 changed files with 5 additions and 0 deletions
|
@ -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 a new issue