mirror of
https://github.com/discourse/discourse.git
synced 2024-12-20 20:03:46 +08:00
019ba099c8
This one has the potential to be very noisy, so a special dedupliation handler is introduced. https://meta.discourse.org/t/337276
22 lines
480 B
JavaScript
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;
|