You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docusaurus/docs/Angular/components/message-actions.mdx
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,10 +34,6 @@ export class CustomMessageComponent {
34
34
}
35
35
```
36
36
37
-
:::important
38
-
The `MessageActionBox` component doesn't check if the user has the necessary capabilities to perform a given aciton, it is done by the [`MessageList`](./message-list.mdx/#enabledmessageactions) component.
Copy file name to clipboardExpand all lines: docusaurus/docs/Angular/services/channel.mdx
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,10 @@ Sets the given `channel` as active.
54
54
55
55
Sets the given `message` as an active parent message. If `undefined` is provided, it will deleselect the current parent message.
56
56
57
+
## selectMessageToQuote
58
+
59
+
Sets the given `message` as a message to be quoted. If `undefined` is provided, it will deleselect the current message.
60
+
57
61
## hasMoreChannels$
58
62
59
63
Emits `false` if there are no more pages of channels that can be loaded.
@@ -74,6 +78,10 @@ Emits the id of the currently selected parent message. If no message is selected
74
78
75
79
Emits the currently selected parent message. If no message is selected, it emits undefined.
76
80
81
+
## messageToQuote$
82
+
83
+
Emits the currently selected message to be quoted. If no message is selected, it emits undefined.
84
+
77
85
## activeThreadMessages$
78
86
79
87
Emits the list of currently loaded thread replies belonging to the selected parent message. If there is no currently active thread it emits an empty array.
0 commit comments