Support selectable visibility of repeats #440
No reviewers
Labels
No labels
a11y
Bug
Bug fix
Critical Priority
Documentation
Feature
Feature request
Held for next release cycle
High Priority
Low Priority
Medium Priority
Minor change
Translation/Locale
WIP
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: AkkomaGang/akkoma-fe#440
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "Oneric/akkoma-fe:boost-scopes"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Update: With AkkomaGang/akkoma#941 there’s no confusion anymore and this should be a clear improvement
Currently the backend maps the fine-grained visibility options to a booleanprivate
/public
though which is a bit confusing. (onlyprivate
/direct
are mapped toprivate
; everything else, is considered apublic
repeat)Mastodon supportsprivate
//unlisted
/public
visibilities however, so there’s no reason we shouldn’t just support all visibility options in the backend.Seelib/pleroma/web/common_api.ex::{repeat/3, public_announce/2}
andlib/pleroma/web/activity_pub/builder.ex::announce/3
in the backend and compare tolib/pleroma/web/common_api/utils.ex::get_to_and_cc/1
which takes anActivityDraft
Superseding #345