feat: fetch teams and agents

This commit is contained in:
Shivam Mishra
2026-06-04 13:06:22 +05:30
parent 295bc94fa3
commit 186d9e0457
+3
View File
@@ -94,6 +94,9 @@ onMounted(async () => {
await Promise.all([
store.dispatch('getConversation', conversationId.value),
store.dispatch('fetchAllAttachments', conversationId.value),
// agents and teams power the @mention dropdown on private notes
store.dispatch('agents/get'),
store.dispatch('teams/get'),
]);
await fetchConversationInbox();