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
defaultMention: true, // Replies to synced threads mention this connector by default
808
-
updated: this.onThreadUpdated,
809
-
},
810
-
note: { created: this.onNoteCreated },
811
-
}),
803
+
export class MyConnector extends Connector<MyConnector> {
804
+
static readonly handleReplies = true; // Replies to synced threads mention this connector by default
805
+
// ...
806
+
}
812
807
```
813
808
814
-
Withoutthis, users must manually toggle the connector's mention chip on each reply. Connectors that don't process replies (e.g., read-only calendar sync) should NOT set this flag.
809
+
Withoutthis, the connector cannot be @-mentioned at all. Connectors that don't process replies (e.g., read-only calendar sync) should NOT set this flag.
0 commit comments