Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [docs] Message Forwards feature Add documentation for message forwards. A message forward gives users the ability to send a snapshot of a message in one channel to another channel. - snapshots are immutable, and do not receive updates from the original message (unlike replies) - similar to a REPLY message, a forward is created using a `message_reference` # Examples ## Responses ```json { "author": { "id": 123456789012345678, }, "message_reference": { "type": 1, // FORWARD "message_id": 123456789012345678, "channel_id": 123456789012345678, "guild_id": 123456789012345678 }, "message_snapshot": { "content": "hello world", "embeds": [ // Embed objects ], "attachments": [ // Attachment objects ], } } ``` * udpate how reference pseudo types are defined * multi snapshots + forward restrictions * table formatting lint is too damn sensitive * field name split blockquotes * better formatting and some grammer cleanups * add changelog * suggestion updates * Update docs/resources/Channel.md Co-authored-by: val.le <81811276+valdotle@users.noreply.github.com> * Update docs/resources/Channel.md Co-authored-by: val.le <81811276+valdotle@users.noreply.github.com> * Update docs/resources/Channel.md Co-authored-by: val.le <81811276+valdotle@users.noreply.github.com> * Update docs/resources/Channel.md Co-authored-by: val.le <81811276+valdotle@users.noreply.github.com> --------- Co-authored-by: Sam Shih <shih@discordapp.com> Co-authored-by: val.le <81811276+valdotle@users.noreply.github.com>
- Loading branch information