mirror of
https://github.com/discourse/discourse.git
synced 2024-12-20 09:43:58 +08:00
c3e7d97048
This commit starts the rollout of the Glimmer post menu: - default to `auto`: after the upgrade, it will be enabled on all discourse instances that do not have incompatible customizations - unsilence the deprecation messages in the console - removes the setting `glimmer_post_menu_groups` as it's no longer in the test phase
16 lines
506 B
JavaScript
16 lines
506 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",
|
|
},
|
|
{
|
|
handler: "silence",
|
|
matchId: "discourse.hbr-topic-list-overrides",
|
|
},
|
|
];
|
|
|
|
export default DEPRECATION_WORKFLOW;
|