Dec 06 2020 10:29 PM
Hi,
I'd like to know how the following methods are triggered:
onInstallationUpdate, onInstallationUpdateAdd, onInstallationUpdateRemove
We updated our botbuilder-core package to 4.11.0. In our DialogBot class that extends ActivityHandler, we have added the following
this.onInstallationUpdateRemove(this._onInstallationUpdateRemove.bind(this))
this.onInstallationUpdateAdd(this._onInstallationUpdateAdd.bind(this))
this.onInstallationUpdate(this._onInstallationUpdate.bind(this))
All the event handlers do today is just to log that the event was triggered. For example
console.log("__onInstallationUpdateRemove triggered");
I am assuming these events are triggered when a user installs or removes the app from his Teams instance. However, when I tried to install or uninstall my bot from my Teams, nothing happens. There are no "triggered" log statements.
Does anyone know how these events get triggered? What is their purpose?
Thank You
Dec 31 2020 02:36 PM
Jan 03 2021 04:39 PM
@Christopher Hoard Unfortunately, no...