Hi team,
Looking for some additional context on the NotificationCenter component.
I would like to receive a callback when a conference has been created for the current user (externalId) that I have initialized a session with using the <Session /> wrapper. I would use this to display a join now button in the UI.
I have tired wrapping the NotificationCenter as such:
<CommsProvider refreshToken={refetch} token={accessToken}>
<Session
participantInfo={{
externalId: '1234',
name: 'someName',
}}
>
<NotificationCenter position="top-left" />
</Session>
</CommsProvider>
with the assumption that if a conference is created ( server side) with a participentList that includes externalId: '1234 that a notification would be received but I am unsuccessful so far.
Is there a solution for this in the UIKit, or perhaps I have implemented this incorrectly ?
Thanks!
Hi team,
Looking for some additional context on the
NotificationCentercomponent.I would like to receive a callback when a conference has been created for the current user (externalId) that I have initialized a session with using the
<Session />wrapper. I would use this to display a join now button in the UI.I have tired wrapping the
NotificationCenteras such:with the assumption that if a conference is created ( server side) with a
participentListthat includesexternalId: '1234that a notification would be received but I am unsuccessful so far.Is there a solution for this in the UIKit, or perhaps I have implemented this incorrectly ?
Thanks!