I’m trying to load settings into the app, specifically the board menu item feature which I know I can do using react (manifest.json) etc. but I’m wondering if there is a way to load app settings from the Monday context?
This way I can allow the user to set the columns that would contain the post fields I need to post to social media (caption, image, hashtags, etc). It seems like you can do this with a Board View feature just not a board menu item feature?
Example this line of code doesn’t actually load anything or even get called.
monday.listen(“settings”, (res) => {
console.log("Settings: ",res.data);
setSettings(res.data);
});