Skip to content
This repository was archived by the owner on Apr 22, 2026. It is now read-only.

Latest commit

 

History

History
27 lines (22 loc) · 521 Bytes

File metadata and controls

27 lines (22 loc) · 521 Bytes

Command: messages_pinned

Request:

{
  "cmd": "messages_pinned",
  "channel": "<channel_name>"
}
  • channel: Channel name.

Response:

  • On success:
{
  "cmd": "messages_pinned",
  "channel": "<channel_name>",
  "messages": [ ...array of message objects... ]
}

Notes:

  • User must be authenticated and have access to the channel.

See implementation: handlers/message.py (search for case "messages_pinned":).