mirror of
https://github.com/discourse/discourse.git
synced 2024-12-20 00:55:58 +08:00
435fbb7408
* DEV: unsilence deprecation warnings for old Font Awesome icon names * update fa-user to user font awesome icon name * update pencil-alt to pencil font awesome 6 icon name
18 lines
399 B
JavaScript
18 lines
399 B
JavaScript
const DEPRECATION_WORKFLOW = [
|
|
{ handler: "silence", matchId: "discourse.select-kit" },
|
|
{
|
|
handler: "silence",
|
|
matchId: "discourse.decorate-widget.hamburger-widget-links",
|
|
},
|
|
{
|
|
handler: "silence",
|
|
matchId: "discourse.post-menu-widget-overrides",
|
|
},
|
|
{
|
|
handler: "silence",
|
|
matchId: "discourse.hbr-topic-list-overrides",
|
|
},
|
|
];
|
|
|
|
export default DEPRECATION_WORKFLOW;
|