Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
Remove BEEPER_INBOX_DONE, no longer used.
Browse files Browse the repository at this point in the history
  • Loading branch information
incognitobeeper committed Mar 5, 2023
1 parent 20d423c commit 20569b5
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion synapse/api/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,6 @@ class ReceiptTypes:
READ: Final = "m.read"
READ_PRIVATE: Final = "m.read.private"
FULLY_READ: Final = "m.fully_read"
BEEPER_INBOX_DONE: Final = "com.beeper.inbox.done"


RECEIPTS_MAX_ROOM_SIZE = 100
Expand Down
1 change: 0 additions & 1 deletion synapse/rest/client/notifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ async def on_GET(self, request: SynapseRequest) -> Tuple[int, JsonDict]:
user_id,
[
ReceiptTypes.READ,
ReceiptTypes.BEEPER_INBOX_DONE,
ReceiptTypes.READ_PRIVATE,
],
)
Expand Down
1 change: 0 additions & 1 deletion synapse/rest/client/receipts.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ def __init__(self, hs: "HomeServer"):
ReceiptTypes.READ,
ReceiptTypes.READ_PRIVATE,
ReceiptTypes.FULLY_READ,
ReceiptTypes.BEEPER_INBOX_DONE,
}

async def on_POST(
Expand Down

0 comments on commit 20569b5

Please sign in to comment.