mirror of
https://github.com/discourse/discourse.git
synced 2025-01-17 01:12:49 +08:00
6330e6ceae
This will cause the glimmer topic-list to be enabled for sites with compatible customizations. Incompatible customizations will print a deprecation message to the console, along with a link to more information. Also cleans up a handful of specs/behaviour which were revealed by switching the default. More details at https://meta.discourse.org/t/343404
12 lines
422 B
JavaScript
12 lines
422 B
JavaScript
const DEPRECATION_WORKFLOW = [
|
|
{ handler: "silence", matchId: "template-action" }, // will be removed in Ember 6.0
|
|
{ handler: "silence", matchId: "deprecate-array-prototype-extensions" }, // will be removed in Ember 6.0
|
|
{ handler: "silence", matchId: "discourse.select-kit" },
|
|
{
|
|
handler: "silence",
|
|
matchId: "discourse.decorate-widget.hamburger-widget-links",
|
|
},
|
|
];
|
|
|
|
export default DEPRECATION_WORKFLOW;
|