mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-01-08 23:50:14 +00:00
Feat: document new hide boots setting
This commit is contained in:
parent
af5a766f62
commit
4b7d7f9b8b
|
@ -134,6 +134,11 @@ This feed only includes posts set as 'Public' (see [Privacy Settings](./posts.md
|
||||||
!!! warning
|
!!! warning
|
||||||
Exposing your RSS feed allows *anyone* to subscribe to updates on your Public posts anonymously, bypassing follows and follow requests.
|
Exposing your RSS feed allows *anyone* to subscribe to updates on your Public posts anonymously, bypassing follows and follow requests.
|
||||||
|
|
||||||
|
#### Hide boosts from your public page
|
||||||
|
|
||||||
|
By default, GoToSocial will display posts boosted by you on your public web profile. If you do not wish to display them, You can hide them by checking this box.
|
||||||
|
|
||||||
|
|
||||||
#### Hide Who You Follow / Are Followed By
|
#### Hide Who You Follow / Are Followed By
|
||||||
|
|
||||||
By default, GoToSocial shows your following/followers counts on your public web profile, and allows others to see who you follow and are followed by. This can be useful for account discovery purposes. However, for privacy + safety reasons you may wish to hide these counts, and to hide your following/followers lists from other accounts. You can do this by checking this box.
|
By default, GoToSocial shows your following/followers counts on your public web profile, and allows others to see who you follow and are followed by. This can be useful for account discovery purposes. However, for privacy + safety reasons you may wish to hide these counts, and to hide your following/followers lists from other accounts. You can do this by checking this box.
|
||||||
|
|
|
@ -447,7 +447,7 @@ func (suite *StatusCreateTestSuite) TestPostNewStatusMessedUpIntPolicy() {
|
||||||
suite.Equal(http.StatusBadRequest, recorder.Code)
|
suite.Equal(http.StatusBadRequest, recorder.Code)
|
||||||
|
|
||||||
// We should have a helpful error
|
// We should have a helpful error
|
||||||
// message telling us how we screwed up.
|
// message telling us how we screwed up.
|
||||||
suite.Equal(`{
|
suite.Equal(`{
|
||||||
"error": "Bad Request: error converting followers_only.can_reply.always: policyURI public is not feasible for visibility followers_only"
|
"error": "Bad Request: error converting followers_only.can_reply.always: policyURI public is not feasible for visibility followers_only"
|
||||||
}`, out)
|
}`, out)
|
||||||
|
|
1
internal/cache/size.go
vendored
1
internal/cache/size.go
vendored
|
@ -277,7 +277,6 @@ func sizeofAccountSettings() uintptr {
|
||||||
StatusContentType: "text/plain",
|
StatusContentType: "text/plain",
|
||||||
CustomCSS: exampleText,
|
CustomCSS: exampleText,
|
||||||
EnableRSS: util.Ptr(true),
|
EnableRSS: util.Ptr(true),
|
||||||
HideBoosts: util.Ptr(false),
|
|
||||||
HideCollections: util.Ptr(false),
|
HideCollections: util.Ptr(false),
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
|
@ -123,8 +123,8 @@ func (p *Processor) GetRSSFeedForUsername(ctx context.Context, username string)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add each status to the rss feed.
|
// Add each status to the rss feed.
|
||||||
for _, s := range statuses {
|
for _, status := range statuses {
|
||||||
item, err := p.converter.StatusToRSSItem(ctx, s)
|
item, err := p.converter.StatusToRSSItem(ctx, status)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
err = gtserror.Newf("error converting status to feed item: %w", err)
|
err = gtserror.Newf("error converting status to feed item: %w", err)
|
||||||
return "", gtserror.NewErrorInternalError(err)
|
return "", gtserror.NewErrorInternalError(err)
|
||||||
|
|
|
@ -184,7 +184,6 @@ func (p *Processor) WebStatusesGet(
|
||||||
log.Errorf(ctx, "error convering to web status: %v", err)
|
log.Errorf(ctx, "error convering to web status: %v", err)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
items = append(items, item)
|
items = append(items, item)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue