-
-
Notifications
You must be signed in to change notification settings - Fork 349
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature] Limit interactions (likes, replies, boosts) on a status with per-status settable "interaction policy" #3057
Comments
Related to: mastodon/mastodon#8565 |
Related to: superseriousbusiness/activity#23 |
In-progress documentation for this feature, with extensive examples and stuff: https://github.com/superseriousbusiness/gotosocial/blob/interaction_policy/docs/federation/posts.md#interaction-policy |
Some API model examples: https://gts.superseriousbusiness.org/@dumpsterqueer/statuses/01J1Q4V2KDFQRN50MK80W0N3Y8 |
Further work (to do separately, but noting it down here before I forget):
|
We didn't have an issue for this yet, so I'm just creating one here to track this.
Currently working on a branch to introduce the concept of an interaction policy into GoToSocial. Users ought to be able to set a default interaction policy per visibility level of a status, and also when creating a new status they should be able to specify an interaction policy for just that status.
Interaction policy will let users decide who can reply / like / boost a status without needing approval, who can do with while requiring approval, and who can't do it at all. For example, you could set "canReply" without approval to followers, and set "canReply" with approval to everyone else, etc.
On a federation level, this will be sent out as an
interactionPolicy
property on a Note with this form:Users will be able to "approve" or "reject" an interaction explicitly via a section in the settings panel, and will be able to approve replies implicitly by liking, boosting, or replying to the reply. At that point GtS will sound out an "Accept" message with the URI of the interaction as the Object of the Accept. The owner of the interacting status can then send it out to everyone with the URI of the Accept in the
approvedBy
field of the Activity or Object.In design this is quite similar to what's written in this FEP, though with some changes:
canReply
field to the whole interaction policy which allows for more granular permissions.This is also sort of similar to what Pixelfed does with capabilities / comment controls, as described here -- https://docs.pixelfed.org/spec/ActivityPub.html#capabilities-comment-controls -- and indeed those capabilities can be translated into the interactionPolicy described above, so we should aim to support that too.
The text was updated successfully, but these errors were encountered: