Hi,
I’m a little bit confused about the app setting.
I added a checkbox to my app view setting and in the code I added a listener to any user changes on setting.
monday.listen("settings", res => {
console.log(res.data);
});
It’s work great of a single user. If user A change the setting checkbox to true, the app that runs for user A will get the event of the change. And user B won’t get any change, as I expected.
But if user B will reload the page, the button will be load as true.
If this is a global customize view for all the users, then why user B doesn’t get the event listener of the change?
If the customize view is unique for each user, why user B settings change after reload?
Thanks