discourse/app/assets/javascripts/discourse-common/addon/deprecation-workflow.js
David Taylor 019ba099c8
DEV: Unsilence this-property-fallback deprecation (#29855)
This one has the potential to be very noisy, so a special dedupliation handler is introduced.

https://meta.discourse.org/t/337276
2024-11-21 16:35:05 +00:00

22 lines
480 B
JavaScript

const DEPRECATION_WORKFLOW = [
{ handler: "silence", matchId: "discourse.select-kit" },
{
handler: "silence",
matchId: "discourse.decorate-widget.hamburger-widget-links",
},
{
handler: "silence",
matchId: "discourse.fontawesome-6-upgrade",
},
{
handler: "silence",
matchId: "discourse.post-menu-widget-overrides",
},
{
handler: "silence",
matchId: "discourse.hbr-topic-list-overrides",
},
];
export default DEPRECATION_WORKFLOW;