atproto/lexicons/app/bsky/graph/muteThread.json
Daniel Holmgren 7c1973841d
Thread mutes (#2558)
* schemas

* protos

* implementation

* add filtering on ingestion

* test

* add thread viewer state to post views

* update snaps

* changeset

* fix threadgating test
2024-06-13 15:30:49 -05:00

21 lines
524 B
JSON

{
"lexicon": 1,
"id": "app.bsky.graph.muteThread",
"defs": {
"main": {
"type": "procedure",
"description": "Mutes a thread preventing notifications from the thread and any of its children. Mutes are private in Bluesky. Requires auth.",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["root"],
"properties": {
"root": { "type": "string", "format": "at-uri" }
}
}
}
}
}
}