()
| 228 | } |
| 229 | |
| 230 | func (c *Collection) FriendlyVisibility() string { |
| 231 | if c.IsPrivate() { |
| 232 | return "Private" |
| 233 | } |
| 234 | if c.IsPublic() { |
| 235 | return "Public" |
| 236 | } |
| 237 | if c.IsProtected() { |
| 238 | return "Password-protected" |
| 239 | } |
| 240 | return "Unlisted" |
| 241 | } |
| 242 | |
| 243 | func (c *Collection) ShowFooterBranding() bool { |
| 244 | // TODO: implement this setting |
nothing calls this directly
no test coverage detected