Starting July 1st, 2024, new marketplace apps must be monetized through monday, and we will no longer approve those that utilize an external monetization system.
Our monetization handles the entire payment and billing process, ultimately giving you more time to focus on building and improving your app. We are constantly upgrading our native capabilities and are committed to continued efforts to improve them.
This change does not affect existing apps, and it will be applicable to new apps submitted after the effective date.
To increase app security, we will remove the allow-top-navigation and allow-top-navigation-by-user-activation directives from iframes on June 1st, 2024.
These directives enable apps to redirect customers from their monday account to another website, which poses a security risk for many customers.
Here are good and bad examples of what’s currently allowed:
// Open link in a new tab - GOOD
window.open("<https://www.mozilla.org/">, "mozillaTab");
// Open link in a new window - GOOD
window.open("<https://www.mozilla.org/",'name','height=300,width=650,screenX=400,screenY=350'>)
// Redirect the user outside of monday - BAD
window.top.location.href = "<https://www.mozilla.org/">;
After deprecating these directives, any links utilizing this functionality won’t work but won’t impact app functionality. This update will only disablewindow.top.location.href (see example below):
If you need to direct customers to an external link from the app, you can still do so by opening it in a new tab using the SDK or the window.open method.
We recently added the openCreateItemDialog SDK method that opens a modal from which you can create a new item. It accepts both the optional boardId and boardIds parameters to specify where to create the item. If omitted, the item will be created on the current board (using the context). You can read more about this method here!
To increase app security, we will remove the allow-top-navigation and allow-top-navigation-by-user-activation directives from iframes on June 1st, 2024.
These directives enable apps to redirect customers from their monday account to another website, which poses a security risk for many customers.
Here are good and bad examples of what’s currently allowed:
// Open link in a new tab - GOOD
window.open("<https://www.mozilla.org/">, "mozillaTab");
// Open link in a new window - GOOD
window.open("<https://www.mozilla.org/",'name','height=300,width=650,screenX=400,screenY=350'>)
// Redirect the user outside of monday - BAD
window.top.location.href = "<https://www.mozilla.org/">;
After deprecating these directives, any links utilizing this functionality won’t work but won’t impact app functionality. This update will only disablewindow.top.location.href (see example below):
If you need to direct customers to an external link from the app, you can still do so by opening it in a new tab using the SDK or the window.open method.
To increase app security, we will remove the allow-top-navigation and allow-top-navigation-by-user-activation directives from iframes on June 1st, 2024.
These directives enable apps to redirect customers from their monday account to another website, which poses a security risk for many customers.
Here are good and bad examples of what’s currently allowed:
// Open link in a new tab - GOOD
window.open("<https://www.mozilla.org/">, "mozillaTab");
// Open link in a new window - GOOD
window.open("<https://www.mozilla.org/",'name','height=300,width=650,screenX=400,screenY=350'>)
// Redirect the user outside of monday - BAD
window.top.location.href = "<https://www.mozilla.org/">;
After deprecating these directives, any links utilizing this functionality won’t work but won’t impact app functionality. This update will only disablewindow.top.location.href (see example below):
If you need to direct customers to an external link from the app, you can still do so by opening it in a new tab using the SDK or the window.open method.
Calling all monday code users - we have an exciting update for you!
We recently added the ability to create new HTTP error rate and latency response alerts, so you'll be notified when the specified thresholds are exceeded. When this occurs, an item will be made on the designated alert board. You can then integrate your alert board with external tools to receive notifications where you want!
You can create and manage these alerts through the Developer Center using the monday code General tab. Check out more info here!
We just released a variety of new app and sales analytics widgets to help you get a deeper understanding of your app's performance, sales, users, payments, and usage! You can read more about sales analytics here and app analytics here.