Commit 86641ea
Message forwarding (#6833)
* [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 <[email protected]>
* Update docs/resources/Channel.md
Co-authored-by: val.le <[email protected]>
* Update docs/resources/Channel.md
Co-authored-by: val.le <[email protected]>
* Update docs/resources/Channel.md
Co-authored-by: val.le <[email protected]>
---------
Co-authored-by: Sam Shih <[email protected]>
Co-authored-by: val.le <[email protected]>1 parent d881693 commit 86641ea
File tree
4 files changed
+161
-71
lines changed- docs
- interactions
- resources
- topics
4 files changed
+161
-71
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
3 | 41 | | |
4 | 42 | | |
5 | 43 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
154 | 154 | | |
155 | 155 | | |
156 | 156 | | |
157 | | - | |
| 157 | + | |
158 | 158 | | |
159 | 159 | | |
160 | 160 | | |
| |||
0 commit comments