mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-31 20:02:09 +00:00
Fix invalid reference in feeds template (#1820)
* Fix invalid reference in feeds template * Comment for GetActAvatar * Add integration test
This commit is contained in:
parent
97f7f88bed
commit
bafd778c25
3 changed files with 16 additions and 1 deletions
|
@ -142,6 +142,12 @@ func (a *Action) ShortActUserName() string {
|
|||
return base.EllipsisString(a.GetActUserName(), 20)
|
||||
}
|
||||
|
||||
// GetActAvatar the action's user's avatar link
|
||||
func (a *Action) GetActAvatar() string {
|
||||
a.loadActUser()
|
||||
return a.ActUser.AvatarLink()
|
||||
}
|
||||
|
||||
// GetRepoUserName returns the name of the action repository owner.
|
||||
func (a *Action) GetRepoUserName() string {
|
||||
a.loadRepo()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue