()
| 359 | } |
| 360 | |
| 361 | func (c *Collection) AvatarURL() string { |
| 362 | fl := string(unicode.ToLower([]rune(c.DisplayTitle())[0])) |
| 363 | if !isAvatarChar(fl) { |
| 364 | return "" |
| 365 | } |
| 366 | return c.hostName + "/img/avatars/" + fl + ".png" |
| 367 | } |
| 368 | |
| 369 | func (c *Collection) FederatedAPIBase() string { |
| 370 | return c.hostName + "/" |
no test coverage detected