Hi,
I would like to add some custom tracking code when someone installs my addon. I tried placing code on the app get installed and it doesn’t show anything. Seems this route is there but not actually used?
// Add route for installed response! I think it is native this one is not used
app.get('/installed', function(req, res) {
res.status(200);
});
How can I add code when the /installed runs?
Thanks
Joao